We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44fd83b commit 5aee1bfCopy full SHA for 5aee1bf
dpnp/tests/third_party/cupy/math_tests/test_window.py
@@ -32,14 +32,14 @@ def test_window(self, xp):
32
)
33
class TestKaiser(unittest.TestCase):
34
35
- @testing.numpy_cupy_allclose(atol=1e-5)
+ @testing.numpy_cupy_allclose(atol=1e-5, type_check=has_support_aspect64())
36
def test_kaiser_parametric(self, xp):
37
return getattr(xp, self.name)(self.m, self.beta)
38
39
40
@testing.parameterize(*testing.product({"m": [-1, 0, 1]}))
41
class TestKaiserBoundary(unittest.TestCase):
42
43
44
def test_kaiser(self, xp):
45
return xp.kaiser(self.m, 1.5)
0 commit comments