Skip to content

Commit adaa8c0

Browse files
authored
Merge pull request numpy#25961 from charris/fix-test-identity
TST, MAINT: Loosen tolerance in fft test.
2 parents 2fe6009 + 7e1c848 commit adaa8c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

numpy/_core/src/highway

Submodule highway updated 125 files

numpy/fft/tests/test_pocketfft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_identity_long_short(self, dtype):
5555
def test_identity_long_short_reversed(self, dtype):
5656
# Also test explicitly given number of points in reversed order.
5757
maxlen = 16
58-
atol = 4 * np.spacing(np.array(1., dtype=dtype))
58+
atol = 5 * np.spacing(np.array(1., dtype=dtype))
5959
x = random(maxlen).astype(dtype) + 1j*random(maxlen).astype(dtype)
6060
xx = np.concatenate([x, np.zeros_like(x)])
6161
for i in range(1, maxlen*2):

0 commit comments

Comments
 (0)