Fix ManualBenchmarkState iteration unit
Unit is count, not time in ms. Bug: b/229101168 Test: make Change-Id: Iafbcbb1ee42ff855d1dafc995219fa4e255f32a0
This commit is contained in:
parent
c54e991bec
commit
d5c85599a0
@ -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());
|
||||
|
Loading…
x
Reference in New Issue
Block a user