We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93534d7 commit 3b57f0cCopy full SHA for 3b57f0c
tests/third_party/cupy/linalg_tests/test_solve.py
@@ -10,7 +10,7 @@
10
is_cpu_device,
11
)
12
from tests.third_party.cupy import testing
13
-from tests.third_party.cupy.testing import condition
+from tests.third_party.cupy.testing import _condition
14
15
16
@testing.parameterize(
@@ -104,7 +104,7 @@ def test_invalid_shape(self):
104
105
class TestInv(unittest.TestCase):
106
@testing.for_dtypes("ifdFD")
107
- @condition.retry(10)
+ @_condition.retry(10)
108
def check_x(self, a_shape, dtype):
109
a_cpu = numpy.random.randint(0, 10, size=a_shape)
110
a_cpu = a_cpu.astype(dtype, order=self.order)
0 commit comments