Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7bd2ae4

Browse files
committed
Switch units back to microsecond
1 parent 134bc4a commit 7bd2ae4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

display_list/benchmarking/dl_region_benchmarks.cc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -567,56 +567,56 @@ BENCHMARK_CAPTURE(BM_DlRegion_Operation,
567567
false,
568568
30,
569569
kSizeFactorSmall)
570-
->Unit(benchmark::kNanosecond);
570+
->Unit(benchmark::kMicrosecond);
571571
BENCHMARK_CAPTURE(BM_SkRegion_Operation,
572572
Intersection_TinyAssymetric,
573573
RegionOp::kIntersection,
574574
false,
575575
30,
576576
kSizeFactorSmall)
577-
->Unit(benchmark::kNanosecond);
577+
->Unit(benchmark::kMicrosecond);
578578
BENCHMARK_CAPTURE(BM_DlRegion_Operation,
579579
Intersection_SmallAssymetric,
580580
RegionOp::kIntersection,
581581
false,
582582
100,
583583
kSizeFactorSmall)
584-
->Unit(benchmark::kNanosecond);
584+
->Unit(benchmark::kMicrosecond);
585585
BENCHMARK_CAPTURE(BM_SkRegion_Operation,
586586
Intersection_SmallAssymetric,
587587
RegionOp::kIntersection,
588588
false,
589589
100,
590590
kSizeFactorSmall)
591-
->Unit(benchmark::kNanosecond);
591+
->Unit(benchmark::kMicrosecond);
592592
BENCHMARK_CAPTURE(BM_DlRegion_Operation,
593593
Intersection_MediumAssymetric,
594594
RegionOp::kIntersection,
595595
false,
596596
400,
597597
kSizeFactorSmall)
598-
->Unit(benchmark::kNanosecond);
598+
->Unit(benchmark::kMicrosecond);
599599
BENCHMARK_CAPTURE(BM_SkRegion_Operation,
600600
Intersection_MediumAssymetric,
601601
RegionOp::kIntersection,
602602
false,
603603
400,
604604
kSizeFactorSmall)
605-
->Unit(benchmark::kNanosecond);
605+
->Unit(benchmark::kMicrosecond);
606606
BENCHMARK_CAPTURE(BM_DlRegion_Operation,
607607
Intersection_LargeAssymetric,
608608
RegionOp::kIntersection,
609609
false,
610610
1500,
611611
kSizeFactorSmall)
612-
->Unit(benchmark::kNanosecond);
612+
->Unit(benchmark::kMicrosecond);
613613
BENCHMARK_CAPTURE(BM_SkRegion_Operation,
614614
Intersection_LargeAssymetric,
615615
RegionOp::kIntersection,
616616
false,
617617
1500,
618618
kSizeFactorSmall)
619-
->Unit(benchmark::kNanosecond);
619+
->Unit(benchmark::kMicrosecond);
620620

621621
BENCHMARK_CAPTURE(BM_DlRegion_Operation,
622622
Intersection_SingleRect_Tiny,

0 commit comments

Comments
 (0)