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
when using scipy.interpolate.splev, I get the following error:
Unknown attribute 'splev' of type Module(<module 'scipy.interpolate' from '/home/user/venv/numba/lib/python3.6/site-packages/scipy/interpolate/__init__.py'>)
Is it possible to integrate splev within numba-scipy?
Or does this error message mean I do not use numba-scipy correctly?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Thanks for the report. The error message means that it has not been implemented.
Is it possible to integrate splev within numba-scipy?
I would imagine so, the use of Numba's extension API @overload decorator is strongly recommended for this task. A guide to using @overload is here and API documentation is here.
It may be useful to take a look at examples of pull requests adding support for a NumPy function that have already been done if guidance is needed... here's a couple:
Hi,
when using
scipy.interpolate.splev
, I get the following error:Is it possible to integrate
splev
within numba-scipy?Or does this error message mean I do not use numba-scipy correctly?
Thanks in advance!
The text was updated successfully, but these errors were encountered: