We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following
using TimerOutputs to = TimerOutput() @timeit to "sleep 7 minutes" sleep(7*60) show(to)
produces
──────────────────────────────────────────────────────────────────────────── Time Allocations ─────────────────────── ──────────────────────── Tot / % measured: 1.17h / 99.8% 43.2MiB / 0.3% Section ncalls time %tot avg alloc %tot avg ──────────────────────────────────────────────────────────────────────────── sleep 7 minutes 1 1.17h 100.0% 1.17h 142KiB 100.0% 142KiB ────────────────────────────────────────────────────────────────────────────
which is wrong.
I think it's just a bug in utilities.jl
utilities.jl
elseif t < 360e9 value, units = t / 60e9, "m" else value, units = t / 360e9, "h" end
where the 360s should be 3600s.
360
3600
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following
produces
which is wrong.
I think it's just a bug in
utilities.jl
where the
360
s should be3600
s.The text was updated successfully, but these errors were encountered: