Jesse Livezey

Results 12 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...

It also looks like my text editor cleaned up a bunch of trailing spaces and spaces on blank lines.

@sturlamolden thanks for the comments. I think I've addressed them. Anything else I should update?

I can eventually update this to be consistent with #8908.

Hi @N1r, we didn't have the need to implement this for d > 1, so we never got around to it. Foreca for d > 1 is a little more...

Depends on a pytorch change. https://github.com/pytorch/pytorch/issues/22620

Thanks for bumping this. I'll try and make progress in the next few weeks. I should be able to get at least the Fig 1 notebook cleaned up fairly quickly.

AFAICT, `trapz()` was deprecated and `trapezoid()` was added in numpy 2.0. `trapz()` will be removed in numpy 2.4. Maint branch of numpy 1.26 https://github.com/numpy/numpy/blob/efcc645601bdce30e24ec58bf447d77a4a849619/numpy/lib/function_base.py#L4860 Maint branch of numpy 2.0 `trapz()`...