Lines Matching full:benchmarks
201 Benchmarks chapter
205 The benchmarks are written using the `Google Benchmark`_ library, a copy of which
213 Building Benchmarks
216 The benchmark tests are not built by default. The benchmarks can be built using
217 the ``cxx-benchmarks`` target.
225 $ make cxx-benchmarks
227 This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be
229 ``build/benchmarks``.
231 The benchmarks can also be built against the platforms native standard library
234 The compiled benchmarks are named ``<test>.libcxx.out`` if they test libc++ and
242 Running Benchmarks
245 The benchmarks must be run manually by the user. Currently there is no way
252 $ cd build/benchmarks
253 $ make cxx-benchmarks
254 $ ./algorithms.libcxx.out # Runs all the benchmarks
255 $ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks
257 For more information about running benchmarks see `Google Benchmark`_.