Skip to content

Commit 0830ed7

Browse files
committed
address comments
1 parent 5fa692e commit 0830ed7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,14 @@ env:
3636
third_party/cupy/manipulation_tests/test_join.py
3737
third_party/cupy/manipulation_tests/test_rearrange.py
3838
third_party/cupy/manipulation_tests/test_transpose.py
39+
third_party/cupy/math_tests/test_arithmetic.py
3940
third_party/cupy/math_tests/test_explog.py
41+
third_party/cupy/math_tests/test_floating.py
42+
third_party/cupy/math_tests/test_hyperbolic.py
43+
third_party/cupy/math_tests/test_matmul.py
4044
third_party/cupy/math_tests/test_misc.py
45+
third_party/cupy/math_tests/test_rounding.py
46+
third_party/cupy/math_tests/test_sumprod.py
4147
third_party/cupy/math_tests/test_trigonometric.py
4248
third_party/cupy/sorting_tests/test_sort.py
4349
VER_JSON_NAME: 'version.json'

tests/third_party/cupy/math_tests/test_floating.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import numpy
44

55
import dpnp as cupy
6+
from tests.helper import has_support_aspect64
67
from tests.third_party.cupy import testing
78

89

@@ -15,7 +16,7 @@ def test_signbit(self, xp, dtype):
1516
return xp.signbit(a)
1617

1718
@testing.for_all_dtypes_combination(("dtype_a", "dtype_b"), no_complex=True)
18-
@testing.numpy_cupy_array_equal()
19+
@testing.numpy_cupy_array_equal(type_check=has_support_aspect64())
1920
def test_copysign_combination(self, xp, dtype_a, dtype_b):
2021
a = testing.shaped_arange((2, 3), xp, dtype_a)
2122
b = testing.shaped_reverse_arange((2, 3), xp, dtype_b)

0 commit comments

Comments
 (0)