Skip to content

Commit 54fd45f

Browse files
author
Florian Wagner
committed
some more benchmarking work
1 parent 2fcb897 commit 54fd45f

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

benchmarking/glkernel_bench_auto.sh

+14-15
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ cd ..
66

77

88
rebuild(){
9-
rm -r build
10-
mkdir build
9+
rm -r build_bench
10+
mkdir build_bench
1111
build_it
1212
}
1313

1414
build_it(){
1515

16-
cd build
16+
cd build_bench
1717
mkdir benchmark
1818
cmake .. -doption_build_benchmarks=true -doption_build_tools=false -dcmake_build_type=release
1919
make -j4
@@ -23,20 +23,20 @@ cd ..
2323
bench_omp(){
2424
build_omp
2525
run
26-
cp build/benchmark/results.csv benchmarking/omp_result.csv
26+
cp build_bench/benchmark/results.csv benchmarking/omp_result.csv
2727
}
2828

2929
bench_no_omp(){
3030
build_no_omp
3131
run
32-
cp build/benchmark/results.csv benchmarking/no_omp_result.csv
32+
cp build_bench/benchmark/results.csv benchmarking/no_omp_result.csv
3333
}
3434

3535
build_omp()
3636
{
37-
rm -r build
38-
mkdir build
39-
cd build
37+
rm -r build_bench
38+
mkdir build_bench
39+
cd build_bench
4040
mkdir benchmark
4141
cmake .. -DOPTION_BUILD_BENCHMARKS=true -DOPTION_BUILD_TOOLS=false -DCMAKE_BUILD_TYPE=release
4242
make -j4
@@ -45,9 +45,9 @@ cd ..
4545

4646
build_no_omp()
4747
{
48-
rm -r build
49-
mkdir build
50-
cd build
48+
rm -r build_bench
49+
mkdir build_bench
50+
cd build_bench
5151
mkdir benchmark
5252
cmake .. -DOPTION_BUILD_BENCHMARKS=true -DOPTION_BUILD_TOOLS=false -DCMAKE_BUILD_TYPE=release -DUSE_OPENMP=FALSE
5353
make -j4
@@ -57,12 +57,11 @@ cd ..
5757
run(){
5858
build/glkernel-benchmark --benchmark_out=build/benchmark/results.csv \
5959
--benchmark_out_format=csv \
60-
--benchmark_repetitions=$REPITITIONS \
61-
--benchmark_filter=strati
60+
--benchmark_repetitions=$REPITITIONS
6261
}
6362

64-
#build_it
65-
#rebuild
63+
build_it
64+
rebuild
6665
bench_omp
6766
bench_no_omp
6867

source/benchmarks/glkernel-benchmarks/CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ message(STATUS "Benchmark ${target}")
1818
if (NOT OPENMP_FOUND)
1919
message("Loop parallelization in ${target} skipped: OpenMP not found")
2020
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)
2222
endif()
2323

2424

@@ -90,18 +90,18 @@ target_link_libraries(${target}
9090
target_compile_definitions(${target}
9191
PRIVATE
9292
GLM_FORCE_RADIANS
93-
$<$<BOOL:"${OPENMP_FOUND}">:USE_OPENMP>
93+
$<$<BOOL:"${USE_OPENMP}">:USE_OPENMP>
9494
${DEFAULT_COMPILE_DEFINITIONS}
9595
)
9696

9797

9898
#
9999
# Compile options
100-
#
100+
#
101101

102102
target_compile_options(${target}
103103
PRIVATE
104-
$<$<BOOL:"${OPENMP_FOUND}">:${OpenMP_CXX_FLAGS}>
104+
$<$<BOOL:${USE_OPENMP}>:${OpenMP_CXX_FLAGS}>
105105
${DEFAULT_COMPILE_OPTIONS}
106106
)
107107

@@ -113,5 +113,5 @@ target_compile_options(${target}
113113
target_link_libraries(${target}
114114
PRIVATE
115115
${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}>>
117117
)

0 commit comments

Comments
 (0)