File tree 2 files changed +19
-20
lines changed
source/benchmarks/glkernel-benchmarks
2 files changed +19
-20
lines changed Original file line number Diff line number Diff line change 6
6
7
7
8
8
rebuild (){
9
- rm -r build
10
- mkdir build
9
+ rm -r build_bench
10
+ mkdir build_bench
11
11
build_it
12
12
}
13
13
14
14
build_it (){
15
15
16
- cd build
16
+ cd build_bench
17
17
mkdir benchmark
18
18
cmake .. -doption_build_benchmarks=true -doption_build_tools=false -dcmake_build_type=release
19
19
make -j4
@@ -23,20 +23,20 @@ cd ..
23
23
bench_omp (){
24
24
build_omp
25
25
run
26
- cp build /benchmark/results.csv benchmarking/omp_result.csv
26
+ cp build_bench /benchmark/results.csv benchmarking/omp_result.csv
27
27
}
28
28
29
29
bench_no_omp (){
30
30
build_no_omp
31
31
run
32
- cp build /benchmark/results.csv benchmarking/no_omp_result.csv
32
+ cp build_bench /benchmark/results.csv benchmarking/no_omp_result.csv
33
33
}
34
34
35
35
build_omp ()
36
36
{
37
- rm -r build
38
- mkdir build
39
- cd build
37
+ rm -r build_bench
38
+ mkdir build_bench
39
+ cd build_bench
40
40
mkdir benchmark
41
41
cmake .. -DOPTION_BUILD_BENCHMARKS=true -DOPTION_BUILD_TOOLS=false -DCMAKE_BUILD_TYPE=release
42
42
make -j4
45
45
46
46
build_no_omp ()
47
47
{
48
- rm -r build
49
- mkdir build
50
- cd build
48
+ rm -r build_bench
49
+ mkdir build_bench
50
+ cd build_bench
51
51
mkdir benchmark
52
52
cmake .. -DOPTION_BUILD_BENCHMARKS=true -DOPTION_BUILD_TOOLS=false -DCMAKE_BUILD_TYPE=release -DUSE_OPENMP=FALSE
53
53
make -j4
@@ -57,12 +57,11 @@ cd ..
57
57
run (){
58
58
build/glkernel-benchmark --benchmark_out=build/benchmark/results.csv \
59
59
--benchmark_out_format=csv \
60
- --benchmark_repetitions=$REPITITIONS \
61
- --benchmark_filter=strati
60
+ --benchmark_repetitions=$REPITITIONS
62
61
}
63
62
64
- # build_it
65
- # rebuild
63
+ build_it
64
+ rebuild
66
65
bench_omp
67
66
bench_no_omp
68
67
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ message(STATUS "Benchmark ${target}")
18
18
if (NOT OPENMP_FOUND)
19
19
message ("Loop parallelization in ${target} skipped: OpenMP not found" )
20
20
else ()
21
- set (USE_OPENMP TRUE CACHE BOOL "Whether to use OpenMP or not" )
21
+ option (USE_OPENMP "Whether to use OpenMP or not" FALSE )
22
22
endif ()
23
23
24
24
@@ -90,18 +90,18 @@ target_link_libraries(${target}
90
90
target_compile_definitions (${target}
91
91
PRIVATE
92
92
GLM_FORCE_RADIANS
93
- $<$<BOOL :"${OPENMP_FOUND } " >:USE_OPENMP>
93
+ $<$<BOOL :"${USE_OPENMP } " >:USE_OPENMP>
94
94
${DEFAULT_COMPILE_DEFINITIONS}
95
95
)
96
96
97
97
98
98
#
99
99
# Compile options
100
- #
100
+ #
101
101
102
102
target_compile_options (${target}
103
103
PRIVATE
104
- $<$<BOOL :" ${OPENMP_FOUND} " >:${OpenMP_CXX_FLAGS} >
104
+ $<$<BOOL :${USE_OPENMP} >:${OpenMP_CXX_FLAGS} >
105
105
${DEFAULT_COMPILE_OPTIONS}
106
106
)
107
107
@@ -113,5 +113,5 @@ target_compile_options(${target}
113
113
target_link_libraries (${target}
114
114
PRIVATE
115
115
${DEFAULT_LINKER_OPTIONS}
116
- $<$<NOT :$<CXX_COMPILER_ID:MSVC >>:$<$<BOOL :" ${OPENMP_FOUND} " >:${OpenMP_CXX_FLAGS} >>
116
+ $<$<NOT :$<CXX_COMPILER_ID:MSVC >>:$<$<BOOL :${USE_OPENMP} >:${OpenMP_CXX_FLAGS} >>
117
117
)
You can’t perform that action at this time.
0 commit comments