Lines Matching refs:benchmarks
122 The benchmarks are written using the `Google Benchmark`_ library, a copy of which
133 The benchmark tests are not built by default. The benchmarks can be built using
134 the ``cxx-benchmarks`` target.
141 $ ninja cxx-benchmarks
143 This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be
145 ``build/projects/libcxx/benchmarks``.
147 The benchmarks can also be built against the platforms native standard library
150 The compiled benchmarks are named ``<test>.libcxx.out`` if they test libc++ and
161 The benchmarks must be run manually by the user. Currently there is no way
168 $ cd build/projects/libcxx/benchmarks
169 $ ./algorithms.libcxx.out # Runs all the benchmarks
170 $ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks
172 For more information about running benchmarks see `Google Benchmark`_.