[benchmarks] Use the RunTimeRaw metric for Startup.

It makes more sense for Golem to display the benchmark results as a time than as a rate.

Change-Id: Iba262c98e9dc0d07983107966fa9b8d479e1b529
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/242064
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
Ryan Macnak 2022-04-21 23:05:38 +00:00 committed by Commit Bot
parent b514b74dee
commit 633803df35
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ Future<void> main(List<String> args) async {
print(ends.toList());
throw '$name is missing or ambiguous';
}
print('Startup.$name(RunTime): $micros us.');
print('Startup.$name(RunTimeRaw): $micros us.');
}
report('CreateIsolateGroupAndSetupHelper', null);

View file

@ -78,7 +78,7 @@ Future<void> main(List<String> args) async {
print(ends.toList());
throw '$name is missing or ambiguous';
}
print('Startup.$name(RunTime): $micros us.');
print('Startup.$name(RunTimeRaw): $micros us.');
}
report('CreateIsolateGroupAndSetupHelper', null);