numba-scipy icon indicating copy to clipboard operation
numba-scipy copied to clipboard

Supporting scipy.linalg in nopython mode?

Open Phyks opened this issue 8 years ago • 2 comments
trafficstars

Hi,

From my tests and while looking at the docs, it seems scipy.linalg module is not supported in nopython mode.

However, scipy.linalg.expm is the only implementation of matrix exponentiation in scipy and numpy, as far as I know, and having not supported can be blocking for some applications.

For now, I worked around it by isolating the part of my code that needed scipy.linalg.expm and wrapping the rest in a JIT with nopythonmode, but this may not be always possible.

Thanks!

Phyks avatar Mar 30 '17 08:03 Phyks

See "scumba" discussion here: https://github.com/numba/numba/issues/4292

stuartarchibald avatar Jul 10 '19 08:07 stuartarchibald

would love to get an update on this!

hugokitano avatar Dec 10 '21 21:12 hugokitano