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
uses 2D arrays - complex128[:,:] - while guvectorize will turn a function for 1D arrays into a function suitable for 2D arrays when a 2D argument is used in the call.
So the function and its decorator should be written as operating on 1D arrays.
Or written for 2D and use a 3D argument in the call.
The solution posted here :
uses 2D arrays - complex128[:,:] - while
guvectorize
will turn a function for 1D arrays into a function suitable for 2D arrays when a 2D argument is used in the call.So the function and its decorator should be written as operating on 1D arrays.
Or written for 2D and use a 3D argument in the call.
See the example from the Numba documentation:
The text was updated successfully, but these errors were encountered: