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
Note that Julia supports a strided array interface. At the moment FFTW only works with StridedArray which means other types can't use it, see below example.
I assume this is an easy fix and just replace ::StridedArray with ::AbstractArray, as non-compatible types will error out on the call to pointer.
Note that Julia supports a strided array interface. At the moment FFTW only works with
StridedArray
which means other types can't use it, see below example.I assume this is an easy fix and just replace
::StridedArray
with::AbstractArray
, as non-compatible types will error out on the call topointer
.The text was updated successfully, but these errors were encountered: