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
Profiling right now is not really up to snuff for multi-threaded programs in general. https://golang.org/doc/diagnostics has a couple of nifty features.
Right; notice the time is actually inside wait(), which is just where we pick another task to run, or block. I want to get rid of task_done_hook, but at least this doesn't seem to indicate it's using a lot of CPU.
When the number of threads is not 1, a lot of time is reported in
task_done_hook
. This makes profiling results confusing.julia -t 1
is a workaround.The text was updated successfully, but these errors were encountered: