Closed tpapp closed 3 years ago
It's definitely a Julia issue; just use
using Profile
@profile f(10^5)
Profile.print()
and observe all the counts at the bottom for task_done_hook
. (Without loading ProfileView.)
Thanks, closing in favor of JuliaLang/julia#41713.
MWE: start
julia
with eg-t 4
, then inIn the resulting flamegraph, most of the time is spent in
task_done_hook
(nestingwait
,poptask
).Starting as
julia -t 1
is a workaround.ProfileView 0.6.10; FlameGraphs 0.2.5; julia 1.6, 1.7, master.
I am opening an issue here because I am not sure if this is something to do with Julia's profiling infrastructure or this package, please move if necessary.
Possibly post-processing the results could solve this issue? Cf discussion.