File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ Version History
24
24
- Adding ` ClearSurface ` and ` ClearVolume ` function to clear the surface and volume samples separately.
25
25
This allows to wait until a specific number of samples is collected for the surface or volume cache before updating/fitting the ` Field ` .
26
26
27
+ - Deactivating/removing ` OMP ` threading support since it would still have a dependency on ` TBB `
28
+
27
29
- Bugfixes:
28
30
- Fixing bug causing crash during ` Field::Update ` when in previous iterations no volume or surface samples were present.
29
31
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ include(openpgl_macros)
29
29
30
30
## openpgl specific configuration ##
31
31
32
- option (OPENPGL_USE_OMP_THREADING "Use omp instead of tbb for threading." OFF )
32
+ # option(OPENPGL_USE_OMP_THREADING "Use omp instead of tbb for threading." OFF)
33
33
option (OPENPGL_BUILD_STATIC "Build OpenPGL as static library." OFF )
34
34
35
35
option (OPENPGL_BUILD_TOOLS "Build tool applications." OFF )
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ specification is still in flux and might change with upcoming releases.
51
51
## Open PGL 0.5.0
52
52
53
53
- Api changes:
54
+
54
55
- ` PathSegmentStorage ` :
55
56
- Removed support for splatting training samples due to the
56
57
fact that knn-lookups have proven to be better. Therefore,
@@ -75,7 +76,12 @@ specification is still in flux and might change with upcoming releases.
75
76
the surface and volume samples separately. This allows to
76
77
wait until a specific number of samples is collected for the
77
78
surface or volume cache before updating/fitting the ` Field ` .
79
+
80
+ - Deactivating/removing ` OMP ` threading support since it would still
81
+ have a dependency on ` TBB `
82
+
78
83
- Bugfixes:
84
+
79
85
- Fixing bug causing crash during ` Field::Update ` when in previous
80
86
iterations no volume or surface samples were present.
81
87
Original file line number Diff line number Diff line change @@ -110,18 +110,18 @@ else()
110
110
endif ()
111
111
112
112
113
- if (OPENPGL_USE_OMP_THREADING )
114
- set (OPENPGL_RELEASE_OPTIONS -fopenmp )
115
- endif ()
113
+ # if(OPENPGL_USE_OMP_THREADING)
114
+ # set(OPENPGL_RELEASE_OPTIONS -fopenmp)
115
+ # endif()
116
116
117
117
target_compile_options (${PROJECT_NAME} PUBLIC "$<$<CONFIG:RELEASE>:${OPENPGL_RELEASE_OPTIONS} >" )
118
118
119
119
# CMAKE 3.8 feature
120
120
#target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11)
121
121
122
- if (OPENPGL_USE_OMP_THREADING )
123
- add_compile_definitions (OPENPGL_USE_OMP_THREADING )
124
- endif ()
122
+ # if(OPENPGL_USE_OMP_THREADING)
123
+ # add_compile_definitions(OPENPGL_USE_OMP_THREADING)
124
+ # endif()
125
125
126
126
#add_compile_options()
127
127
You can’t perform that action at this time.
0 commit comments