Skip to content

Commit 5aee1bf

Browse files
author
Vahid Tavanashad
committed
update third party tests
1 parent 44fd83b commit 5aee1bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpnp/tests/third_party/cupy/math_tests/test_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ def test_window(self, xp):
3232
)
3333
class TestKaiser(unittest.TestCase):
3434

35-
@testing.numpy_cupy_allclose(atol=1e-5)
35+
@testing.numpy_cupy_allclose(atol=1e-5, type_check=has_support_aspect64())
3636
def test_kaiser_parametric(self, xp):
3737
return getattr(xp, self.name)(self.m, self.beta)
3838

3939

4040
@testing.parameterize(*testing.product({"m": [-1, 0, 1]}))
4141
class TestKaiserBoundary(unittest.TestCase):
4242

43-
@testing.numpy_cupy_allclose(atol=1e-5)
43+
@testing.numpy_cupy_allclose(atol=1e-5, type_check=has_support_aspect64())
4444
def test_kaiser(self, xp):
4545
return xp.kaiser(self.m, 1.5)

0 commit comments

Comments
 (0)