Merge "Fix ManualBenchmarkState iteration unit" into tm-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
1c51fb46b1
@@ -306,7 +306,7 @@ public final class ManualBenchmarkState {
|
|||||||
|
|
||||||
private void fillStatus(Bundle status, String key, Stats stats) {
|
private void fillStatus(Bundle status, String key, Stats stats) {
|
||||||
if (shouldReport(StatsReport.FLAG_ITERATION)) {
|
if (shouldReport(StatsReport.FLAG_ITERATION)) {
|
||||||
status.putLong(key + "_iteration (ns)", stats.getSize());
|
status.putLong(key + "_iteration", stats.getSize());
|
||||||
}
|
}
|
||||||
if (shouldReport(StatsReport.FLAG_MEDIAN)) {
|
if (shouldReport(StatsReport.FLAG_MEDIAN)) {
|
||||||
status.putLong(key + "_median (ns)", stats.getMedian());
|
status.putLong(key + "_median (ns)", stats.getMedian());
|
||||||
|
|||||||
Reference in New Issue
Block a user