Skip to content

Commit 55f6c5c

Browse files
committed
Update README.md
1 parent 77b0681 commit 55f6c5c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ ctest --test-dir build -j$(nproc)
102102

103103
## Benchmarking
104104
Some 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
```
112111
To run all the benchmarks together use the command:
113112
```shell
113+
cd benchmark
114114
for f in ./*.out ; do ./$f ; done
115115
```
116116

0 commit comments

Comments
 (0)