File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -102,15 +102,15 @@ ctest --test-dir build -j$(nproc)
102102
103103## Benchmarking
104104Some functionalities of the library have been benchmarked in order to assess their efficiency.
105- The benchmarks are performed using a small toolkit developed by @sbaldu , in order to keep them simple and
106- without needing to rely on large external libraries.
107- To compile the benchmarks use the commands:
105+ The benchmarks are performed using [ Google Benchmarks] ( https://github.com/google/benchmark ) .
106+ To build the benchmarks add the flag ` -DDSF_BENCHMARKS=ON ` :
108107``` shell
109- cd benchmark
110- cmake -B build && make -C build
108+ cmake -B build -DDSF_BENCHMARKS=ON
109+ cmake --build build -j $( nproc )
111110```
112111To run all the benchmarks together use the command:
113112``` shell
113+ cd benchmark
114114for f in ./* .out ; do ./$f ; done
115115```
116116
You can’t perform that action at this time.
0 commit comments