Merge "Fix ManualBenchmarkState iteration unit" into tm-dev

This commit is contained in:
TreeHugger Robot
2022-05-03 01:57:07 +00:00
committed by Android (Google) Code Review

View File

@@ -306,7 +306,7 @@ public final class ManualBenchmarkState {
private void fillStatus(Bundle status, String key, Stats stats) {
if (shouldReport(StatsReport.FLAG_ITERATION)) {
status.putLong(key + "_iteration (ns)", stats.getSize());
status.putLong(key + "_iteration", stats.getSize());
}
if (shouldReport(StatsReport.FLAG_MEDIAN)) {
status.putLong(key + "_median (ns)", stats.getMedian());