You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue was originally reported at JunoLab/Juno.jl#481 and was found to be an issue of the Profile package.
Running this file (saved as test.jl)
using LinearAlgebra, Profile
functionbar(x)
if x <0.5returnround(Int64, exp(x))
elsereturnexp(x)
endendfunctionfoo(n)
for i =1:n
for j =1:10000bar(rand())
endendendfoo(3)
@profilefoo(10000)
Profile.print(mincount=100)
This issue was originally reported at JunoLab/Juno.jl#481 and was found to be an issue of the
Profile
package.Running this file (saved as test.jl)
gives
The function
foo
is incorrectly reported at line 0 of test.jl.The text was updated successfully, but these errors were encountered: