File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -588,9 +588,12 @@ macro btime(args...)
588588 local $ trialmin = $ BenchmarkTools. minimum($ trial)
589589 local $ trialmean = $ BenchmarkTools. mean($ trial)
590590 local $ trialallocs = $ BenchmarkTools. allocs($ trialmin)
591- $ print(" min " , $ BenchmarkTools. prettytime($ BenchmarkTools. time($ trialmin)),
592- " , mean " , $ BenchmarkTools. prettytime($ BenchmarkTools. time($ trialmean)),
593- " (" , $ trialallocs , " allocation" , $ trialallocs == 1 ? " " : " s" )
591+ $ print(" min " )
592+ $ printstyled($ BenchmarkTools. prettytime($ BenchmarkTools. time($ trialmin)); bold= true )
593+ $ print(" , " )
594+ $ print(" mean " )
595+ $ printstyled($ BenchmarkTools. prettytime($ BenchmarkTools. time($ trialmean)); bold= true )
596+ $ print(" (" , $ trialallocs , " allocation" , $ trialallocs == 1 ? " " : " s" )
594597 if $ trialallocs != 0
595598 $ print(" , " , $ prettymemory($ memory($ trialmin)))
596599 end
You can’t perform that action at this time.
0 commit comments