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
Note: loading lots of packages at once is greater than sum of loading each individually, from some julia-lang Slack chat this appears to be known issue
UnsafeArrays, StaticArrays, CEnum, MacroTools are common enough that they will almost always be loaded anyways.
AxisArrays cost is minimal.
BangBang is fairly heavyweight, but half of it's load time is from it's dependency on ZygoteRules, which will typically always be loaded as well. BangBang is also pretty necesary for @set!!.
So, only room for improvement is MuJoCo_jll, which stems from GLEW_jll/GLFW_jll/Libglvnd_jll. As a result, only options are:
Ditch GLEW_jll/GLFW_jll/Libglvnd_jll until fixed (can load them manually), which should yield ~3-3.5 s improvement.
Leave and wait until fixed.
Might be worth checking with Elliot to get a rough timeline for when jll load times will be fixed.
The text was updated successfully, but these errors were encountered:
klowrey/MuJoCo.jl: 0.3s
Lyceum/MuJoCo.jl: 6.7s
Bulk of difference is due to dependency loading:
StaticArrays(common to both)For klowrey/MuJoCo.jl:
Note: loading lots of packages at once is greater than sum of loading each individually, from some julia-lang Slack chat this appears to be known issue
UnsafeArrays, StaticArrays, CEnum, MacroTools are common enough that they will almost always be loaded anyways.
AxisArrays cost is minimal.
BangBang is fairly heavyweight, but half of it's load time is from it's dependency on ZygoteRules, which will typically always be loaded as well. BangBang is also pretty necesary for
@set!!
.So, only room for improvement is MuJoCo_jll, which stems from GLEW_jll/GLFW_jll/Libglvnd_jll. As a result, only options are:
Might be worth checking with Elliot to get a rough timeline for when jll load times will be fixed.
The text was updated successfully, but these errors were encountered: