June 2019
Intermediate to advanced
218 pages
5h 19m
English
The textual display of the profiler output shown previously is useful and explanatory in many cases, but can become confusing to read for long, or deeply nested call graphs. In this case, or in general, if you prefer a graphical output, the ProfileView package is the answer. However, this is not included in the base Julia distribution, and must be installed as an external package via the Julia package manager:
julia> using Pkgjulia> Pkg.add("ProfileView")
This will install the ProfileView package and its dependencies (which include the Gtk graphical environment). Once installed, it is very simple to use. Simply load the package and call its view() function instead of Profile.print() after the profile samples have been collected ...
Read now
Unlock full access