Skip to content

Commit

Permalink
Fix number format of time components
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover committed Jan 9, 2022
1 parent b676dd7 commit 4830ca6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ resultAsJson: benches
value: timesToRun average asFloat;
range: ('stdev: {1}' format: {timesToRun tdbSampleVariance asFloat});
extra: (JsonObject new
totalTime: (benches collect: [:ea | ea totalTime asMilliSeconds]) average;
preparationTime: (benches collect: [:ea | ea preparationTime asMilliSeconds]) average;
postparationTime: (benches collect: [:ea | ea postparationTime asMilliSeconds]) average;
totalTime: (benches collect: [:ea | ea totalTime asMilliSeconds]) average asFloat;
preparationTime: (benches collect: [:ea | ea preparationTime asMilliSeconds]) average asFloat;
postparationTime: (benches collect: [:ea | ea postparationTime asMilliSeconds]) average asFloat;
asJsonString);
yourself
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"configAt:ifAbsent:" : "ct 1/8/2022 15:42",
"exportResults" : "ct 1/8/2022 15:37",
"getEnv:" : "ct 1/8/2022 15:31",
"resultAsJson:" : "ct 1/9/2022 01:57",
"resultAsJson:" : "ct 1/9/2022 02:07",
"resultsAsJson" : "ct 1/9/2022 01:57",
"resultsFilePath" : "ct 1/8/2022 15:41",
"runBenchmarks" : "ct 1/8/2022 18:50",
Expand Down

1 comment on commit 4830ca6

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 4830ca6 Previous: b676dd7 Ratio
TDBRetracingSimulatorBenchmark>>#benchFactorial 2511.6666666666665 Milliseconds (stdev: 652.3333333333334) 2529 Milliseconds (stdev: 169.0) 0.99
TDBRetracingSimulatorBenchmark>>#benchProxyImageForm 1064.6666666666667 Milliseconds (stdev: 426.3333333333333) 1079.3333333333333 Milliseconds (stdev: 649.3333333333334) 0.99
TDBRetracingSimulatorBenchmark>>#benchRegex 4510.666666666667 Milliseconds (stdev: 146.33333333333334) 4479.333333333333 Milliseconds (stdev: 2881.3333333333335) 1.01
TraceDebuggerBenchmark>>#benchExpandAll 2520 Milliseconds (stdev: 11491.0) 2565 Milliseconds (stdev: 181.0) 0.98
TraceDebuggerBenchmark>>#benchStepOver 1484.3333333333333 Milliseconds (stdev: 12082.333333333334) 1481.6666666666667 Milliseconds (stdev: 8644.333333333334) 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.