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
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!
The text was updated successfully, but these errors were encountered:
Hi,
From my tests and while looking at the docs, it seems
scipy.linalg
module is not supported innopython
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 withnopythonmode
, but this may not be always possible.Thanks!
The text was updated successfully, but these errors were encountered: