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
In places where scipy.special functions are used, some trickery is needed.
For example, this snippet is used to make scipy.special.erfi work within numba jitted functions for np.float64 input:
Add
contrib.numba
, and use a noop@jit
if not available on relevant functions.Additionally, the
scipy.integrate.quad
integrand can be sped up withcfunc
, see https://numba.readthedocs.io/en/stable/user/cfunc.html#exampleIn places where
scipy.special
functions are used, some trickery is needed.For example, this snippet is used to make
scipy.special.erfi
work within numba jitted functions fornp.float64
input:The text was updated successfully, but these errors were encountered: