-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
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
@belapsed expression doesn't work on Julia 0.7 #59
Comments
I'm starting to think that julia> @belapsed sleep(0.5) evals = 3
1.2999999999999999e-11
julia> @btime sleep(0.5) evals = 3
501.583 ms (5 allocations: 192 bytes) |
|
The nuclear option is a conditional definition based on |
closed by #77 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On Julia 0.7
@belapsed expression
, without keyword arguments, doesn't work:No problem with Julia 0.5.
Note that the first one isn't tested in
test/ExecutionTests.jl
.BTW, isn't
1.3e-11
a bit too low as elapsed time? On Julia 0.5, same machine (a laptop equipped with an Intel i7 CPU) time is of the order 1.2e-8, which looks more reasonable.The text was updated successfully, but these errors were encountered: