HarfBuzz text shaping engine http://harfbuzz.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Behdad Esfahbod 3c972867b9 More s/hb_font_get_glyph_shape/hb_font_draw_glyph/ 2 years ago
..
fonts
texts [perf] Add Hindi test to benchmark-shape 2 years ago
Makefile.am [perf] Add benchmark-ot 2 years ago
README.md [perf] Update README 2 years ago
benchmark-font.cc More s/hb_font_get_glyph_shape/hb_font_draw_glyph/ 2 years ago
benchmark-map.cc Include cassert to fix bots 2 years ago
benchmark-ot.cc [perf/benchmark-ot] Add zh-hans 2 years ago
benchmark-set.cc [benchmark-set] Another Pause/Resume 2 years ago
benchmark-shape.cc [perf] Add Hindi test to benchmark-shape 2 years ago
benchmark-subset.cc [subset] Graduate L1 instancing API from experimental 2 years ago
meson.build [perf/benchmark-shape] Test ft font backend as well 2 years ago

README.md

Building and Running

Benchmarks are implemented using Google Benchmark.

To build the benchmarks in this directory you need to set the benchmark option while configuring the build with meson:

meson build -Dbenchmark=enabled --buildtype=release

or:

meson build -Dbenchmark=enabled --buildtype=debugoptimized

Then build a specific benchmark binaries with ninja:

ninja -Cbuild perf/benchmark-set

or just build the whole project:

ninja -Cbuild

Finally, to run one of the benchmarks:

./build/perf/benchmark-set

It's possible to filter the benchmarks being run and customize the output via flags to the benchmark binary. See the Google Benchmark User Guide for more details.

Profiling

Configure the build to include debug information for profiling:

CXXFLAGS="-fno-omit-frame-pointer" meson --reconfigure build -Dbenchmark=enabled --buildtype=debug
ninja -Cbuild

Then run the benchmark with perf:

perf record -g build/perf/benchmark-subset --benchmark_filter="BM_subset_codepoints/subset_notocjk/100000" --benchmark_repetitions=5

You probably want to filter to a specific benchmark of interest and set the number of repititions high enough to get a good sampling of profile data.

Finally view the profile with:

perf report