[benchmark-subset] Report in microseconds, not milli

We're in that range now. :)
This commit is contained in:
Behdad Esfahbod 2023-06-30 08:50:49 -06:00
parent 547dc1a40e
commit 0fceaef0f7

View file

@ -263,9 +263,9 @@ int main(int argc, char** argv)
#define TEST_OPERATION(op, time_unit) test_operation (op, #op, tests, num_tests, time_unit)
TEST_OPERATION (subset_glyphs, benchmark::kMillisecond);
TEST_OPERATION (subset_codepoints, benchmark::kMillisecond);
TEST_OPERATION (instance, benchmark::kMillisecond);
TEST_OPERATION (subset_glyphs, benchmark::kMicrosecond);
TEST_OPERATION (subset_codepoints, benchmark::kMicrosecond);
TEST_OPERATION (instance, benchmark::kMicrosecond);
#undef TEST_OPERATION