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
The Preferences.jl is a standard way to package options into packages. It works with a local LocalPreferences.toml file that lives along Project.toml and Manifest.toml.
I found it being useful because it's being used by OrdinaryDiffEq to disable precompilation of some solvers (precompilation on 1.9 for OrdinaryDiffEq is about 400s).
It would be nice if we could bake it in to PlutoPkg, and read it before we trigger precompilation of the package, to avoid the unnecessary precompilation tax.
The Preferences.jl is a standard way to package options into packages. It works with a local
LocalPreferences.toml
file that lives along Project.toml and Manifest.toml.I found it being useful because it's being used by OrdinaryDiffEq to disable precompilation of some solvers (precompilation on 1.9 for OrdinaryDiffEq is about 400s).
It would be nice if we could bake it in to PlutoPkg, and read it before we trigger precompilation of the package, to avoid the unnecessary precompilation tax.
Sample Notebook
The text was updated successfully, but these errors were encountered: