forked from data-apis/array-api-strict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_fft.py
334 lines (300 loc) · 9.95 KB
/
_fft.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
from collections.abc import Sequence
from typing import Literal
import numpy as np
from ._array_object import ALL_DEVICES, Array, Device
from ._data_type_functions import astype
from ._dtypes import (
DType,
_complex_floating_dtypes,
_floating_dtypes,
_real_floating_dtypes,
complex64,
float32,
)
from ._flags import requires_extension
@requires_extension('fft')
def fft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.fft <numpy.fft.fft>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in fft")
res = Array._new(np.fft.fft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, complex64)
return res
@requires_extension('fft')
def ifft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.ifft <numpy.fft.ifft>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in ifft")
res = Array._new(np.fft.ifft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, complex64)
return res
@requires_extension('fft')
def fftn(
x: Array,
/,
*,
s: Sequence[int] | None = None,
axes: Sequence[int] | None = None,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.fftn <numpy.fft.fftn>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in fftn")
res = Array._new(np.fft.fftn(x._array, s=s, axes=axes, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, complex64)
return res
@requires_extension('fft')
def ifftn(
x: Array,
/,
*,
s: Sequence[int] | None = None,
axes: Sequence[int] | None = None,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.ifftn <numpy.fft.ifftn>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in ifftn")
res = Array._new(np.fft.ifftn(x._array, s=s, axes=axes, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, complex64)
return res
@requires_extension('fft')
def rfft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.rfft <numpy.fft.rfft>`.
See its docstring for more information.
"""
if x.dtype not in _real_floating_dtypes:
raise TypeError("Only real floating-point dtypes are allowed in rfft")
res = Array._new(np.fft.rfft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == float32:
return astype(res, complex64)
return res
@requires_extension('fft')
def irfft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.irfft <numpy.fft.irfft>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in irfft")
res = Array._new(np.fft.irfft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, float32)
return res
@requires_extension('fft')
def rfftn(
x: Array,
/,
*,
s: Sequence[int] | None = None,
axes: Sequence[int] | None = None,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.rfftn <numpy.fft.rfftn>`.
See its docstring for more information.
"""
if x.dtype not in _real_floating_dtypes:
raise TypeError("Only real floating-point dtypes are allowed in rfftn")
res = Array._new(np.fft.rfftn(x._array, s=s, axes=axes, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == float32:
return astype(res, complex64)
return res
@requires_extension('fft')
def irfftn(
x: Array,
/,
*,
s: Sequence[int] | None = None,
axes: Sequence[int] | None = None,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.irfftn <numpy.fft.irfftn>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in irfftn")
res = Array._new(np.fft.irfftn(x._array, s=s, axes=axes, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, float32)
return res
@requires_extension('fft')
def hfft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.hfft <numpy.fft.hfft>`.
See its docstring for more information.
"""
if x.dtype not in _complex_floating_dtypes:
raise TypeError("Only complex floating-point dtypes are allowed in hfft")
res = Array._new(np.fft.hfft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == complex64:
return astype(res, float32)
return res
@requires_extension('fft')
def ihfft(
x: Array,
/,
*,
n: int | None = None,
axis: int = -1,
norm: Literal["backward", "ortho", "forward"] = "backward",
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.ihfft <numpy.fft.ihfft>`.
See its docstring for more information.
"""
if x.dtype not in _real_floating_dtypes:
raise TypeError("Only real floating-point dtypes are allowed in ihfft")
res = Array._new(np.fft.ihfft(x._array, n=n, axis=axis, norm=norm), device=x.device)
# Note: np.fft functions improperly upcast float32 and complex64 to
# complex128
if x.dtype == float32:
return astype(res, complex64)
return res
@requires_extension('fft')
def fftfreq(
n: int,
/,
*,
d: float = 1.0,
dtype: DType | None = None,
device: Device | None = None
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.fftfreq <numpy.fft.fftfreq>`.
See its docstring for more information.
"""
if device is not None and device not in ALL_DEVICES:
raise ValueError(f"Unsupported device {device!r}")
if dtype and not dtype in _real_floating_dtypes:
raise ValueError(f"`dtype` must be a real floating-point type. Got {dtype=}.")
np_result = np.fft.fftfreq(n, d=d)
if dtype:
np_result = np_result.astype(dtype._np_dtype)
return Array._new(np_result, device=device)
@requires_extension('fft')
def rfftfreq(
n: int,
/,
*,
d: float = 1.0,
dtype: DType | None = None,
device: Device | None = None
) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.rfftfreq <numpy.fft.rfftfreq>`.
See its docstring for more information.
"""
if device is not None and device not in ALL_DEVICES:
raise ValueError(f"Unsupported device {device!r}")
if dtype and not dtype in _real_floating_dtypes:
raise ValueError(f"`dtype` must be a real floating-point type. Got {dtype=}.")
np_result = np.fft.rfftfreq(n, d=d)
if dtype:
np_result = np_result.astype(dtype._np_dtype)
return Array._new(np_result, device=device)
@requires_extension('fft')
def fftshift(x: Array, /, *, axes: int | Sequence[int] | None = None) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.fftshift <numpy.fft.fftshift>`.
See its docstring for more information.
"""
if x.dtype not in _floating_dtypes:
raise TypeError("Only floating-point dtypes are allowed in fftshift")
return Array._new(np.fft.fftshift(x._array, axes=axes), device=x.device)
@requires_extension('fft')
def ifftshift(x: Array, /, *, axes: int | Sequence[int] | None = None) -> Array:
"""
Array API compatible wrapper for :py:func:`np.fft.ifftshift <numpy.fft.ifftshift>`.
See its docstring for more information.
"""
if x.dtype not in _floating_dtypes:
raise TypeError("Only floating-point dtypes are allowed in ifftshift")
return Array._new(np.fft.ifftshift(x._array, axes=axes), device=x.device)
__all__ = [
"fft",
"ifft",
"fftn",
"ifftn",
"rfft",
"irfft",
"rfftn",
"irfftn",
"hfft",
"ihfft",
"fftfreq",
"rfftfreq",
"fftshift",
"ifftshift",
]