We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just something to keep in mind: From SciPy>=1.9 onwards, we can do, e.g.,
SciPy>=1.9
import scipy as sp def myfunc(): sp.interpolate.xyz sp.integrate.xyz ...
The submodules, e.g., interpolate, are lazy loaded within SciPy>=1.9. Before that, one had to do
interpolate
from scipy import interpolate from scipy import integrate ...
Using this throughout would save roughly 50% of the import time of discretize (crucial for the responsiveness of CLI tools that use discretize).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just something to keep in mind: From
SciPy>=1.9
onwards, we can do, e.g.,The submodules, e.g.,
interpolate
, are lazy loaded within SciPy>=1.9. Before that, one had to doUsing this throughout would save roughly 50% of the import time of discretize (crucial for the responsiveness of CLI tools that use discretize).
The text was updated successfully, but these errors were encountered: