the subject is taken from the Vizcon , 29th-30th Oct Berlin report about progress in plotting.
But i’m more interested, what tooling is available to see how julia compliation steps spend the time?
the subject is taken from the Vizcon , 29th-30th Oct Berlin report about progress in plotting.
But i’m more interested, what tooling is available to see how julia compliation steps spend the time?
You can use @profile
with Profile.print(C=true)
to also see the parts that occur in the runtime (ref use @nospecialize to help with compile time by KristofferC · Pull Request #76 · carlobaldassi/ArgParse.jl · GitHub).