Jesse Livezey

Results 3 comments of Jesse Livezey

No errors with fft along axis 1 ```python import numpy as np from mkl_fft._numpy_fft import rfft X = np.random.randn(1, 18134053) rfft(X, axis=1) print(1, 18134052) X = np.random.randn(16, 18134053) rfft(X, axis=1)...

@oleksandr-pavlyk I only get errors when the first dim is the long/fft dimension and the second is >1 ```python X = np.random.randn(18134053, 2) # for me, anything >=2 for the...