Skip to content

Commit fb27867

Browse files
author
Vahid Tavanashad
committed
fix rad2deg
1 parent f9c194a commit fb27867

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
class TestTrigonometric(unittest.TestCase):
88

99
@testing.for_all_dtypes(no_complex=True)
10-
@testing.numpy_cupy_allclose(atol=1e-3, type_check=has_support_aspect64())
10+
@testing.numpy_cupy_allclose(
11+
atol=1e-4, rtol=0.001, type_check=has_support_aspect64()
12+
)
1113
def check_unary(self, name, xp, dtype):
1214
a = testing.shaped_arange((2, 3), xp, dtype)
1315
return getattr(xp, name)(a)

0 commit comments

Comments
 (0)