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
Using Requires.jl, instrumentation on external libraries is performed on package load time. This reduces the TTFT (Time To First Task or Plot) when loading Extrae.jl.
Unfortunately, it does not allow (a) precompilation of the lazily loaded code nor (b) specify versions of optional libraries.
In order to solve these issues, Julia 1.9 adds Package Extensions and Weak dependencies which are a native implementation of the Requires.jl functionality.
The text was updated successfully, but these errors were encountered:
Using
Requires.jl
, instrumentation on external libraries is performed on package load time. This reduces the TTFT (Time To First Task or Plot) when loadingExtrae.jl
.Unfortunately, it does not allow (a) precompilation of the lazily loaded code nor (b) specify versions of optional libraries.
In order to solve these issues, Julia 1.9 adds Package Extensions and Weak dependencies which are a native implementation of the
Requires.jl
functionality.The text was updated successfully, but these errors were encountered: