File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -226,23 +226,23 @@ target_link_libraries(
226
226
set_target_properties (sort PROPERTIES COMPILE_FLAGS ${OpenMP_CXX_FLAGS} )
227
227
228
228
229
- ## benchmark 11: parallel_pipeline
229
+ ## benchmark 11: linear_pipeline
230
230
add_executable (
231
- parallel_pipeline
232
- ${TF_BENCHMARK_DIR} /parallel_pipeline /main.cpp
233
- ${TF_BENCHMARK_DIR} /parallel_pipeline /omp.cpp
234
- ${TF_BENCHMARK_DIR} /parallel_pipeline /tbb.cpp
235
- ${TF_BENCHMARK_DIR} /parallel_pipeline /taskflow.cpp
231
+ linear_pipeline
232
+ ${TF_BENCHMARK_DIR} /linear_pipeline /main.cpp
233
+ ${TF_BENCHMARK_DIR} /linear_pipeline /omp.cpp
234
+ ${TF_BENCHMARK_DIR} /linear_pipeline /tbb.cpp
235
+ ${TF_BENCHMARK_DIR} /linear_pipeline /taskflow.cpp
236
236
)
237
- target_include_directories (parallel_pipeline PRIVATE ${PROJECT_SOURCE_DIR} /3rd-party/CLI11)
237
+ target_include_directories (linear_pipeline PRIVATE ${PROJECT_SOURCE_DIR} /3rd-party/CLI11)
238
238
target_link_libraries (
239
- parallel_pipeline
239
+ linear_pipeline
240
240
${PROJECT_NAME}
241
241
${TBB_IMPORTED_TARGETS}
242
242
${OpenMP_CXX_LIBRARIES}
243
243
tf::default_settings
244
244
)
245
- set_target_properties (parallel_pipeline PROPERTIES COMPILE_FLAGS ${OpenMP_CXX_FLAGS} )
245
+ set_target_properties (linear_pipeline PROPERTIES COMPILE_FLAGS ${OpenMP_CXX_FLAGS} )
246
246
247
247
248
248
## benchmark 12: graph_pipeline
File renamed without changes.
Original file line number Diff line number Diff line change 1
- #include " parallel_pipeline .hpp"
1
+ #include " linear_pipeline .hpp"
2
2
#include < CLI11.hpp>
3
3
4
4
int main (int argc, char * argv[]) {
Original file line number Diff line number Diff line change 1
- #include " parallel_pipeline .hpp"
1
+ #include " linear_pipeline .hpp"
2
2
#include < omp.h>
3
3
4
4
// linear_chain_omp
File renamed without changes.
Original file line number Diff line number Diff line change 1
- #include " parallel_pipeline .hpp"
1
+ #include " linear_pipeline .hpp"
2
2
#include < taskflow/taskflow.hpp>
3
3
#include < taskflow/algorithm/pipeline.hpp>
4
4
Original file line number Diff line number Diff line change 1
- #include " parallel_pipeline .hpp"
1
+ #include " linear_pipeline .hpp"
2
2
#include < tbb/pipeline.h>
3
3
#include < tbb/tick_count.h>
4
4
#include < tbb/tbb_allocator.h>
You can’t perform that action at this time.
0 commit comments