We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 283d315 + 5b56dec commit 0512782Copy full SHA for 0512782
benchmarks/TypedDataPoly/dart/TypedDataPoly.dart
@@ -42,10 +42,10 @@ class Base extends BenchmarkBase {
42
43
@override
44
void report() {
45
- final double millisecondsPerExercise = measure();
+ final double microsecondsPerExercise = measure();
46
// Report time in nanoseconds per element. [exercise] runs [run] 10 times,
47
// and each [run] does 10 summations.
48
- final double score = millisecondsPerExercise * 1000.0 / n / 10.0 / 10.0;
+ final double score = microsecondsPerExercise * 1000.0 / n / 10.0 / 10.0;
49
print('$name(RunTime): $score ns.');
50
}
51
0 commit comments