Skip to content

Commit a975fc4

Browse files
Change the seed number
1 parent c08ea5e commit a975fc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_linalg.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ class TestQr:
681681
# Set numpy.random.seed for test methods to prevent
682682
# random generation of the input singular matrix
683683
def setup_method(self):
684-
numpy.random.seed(76)
684+
numpy.random.seed(81)
685685

686686
# TODO: New packages that fix issue CMPLRLLVM-53771 are only available in internal CI.
687687
# Skip the tests on cpu until these packages are available for the external CI.
@@ -1042,7 +1042,7 @@ class TestSvd:
10421042
# Set numpy.random.seed for test methods to prevent
10431043
# random generation of the input singular matrix
10441044
def setup_method(self):
1045-
numpy.random.seed(76)
1045+
numpy.random.seed(81)
10461046

10471047
def get_tol(self, dtype):
10481048
tol = 1e-06
@@ -1186,7 +1186,7 @@ class TestPinv:
11861186
# Set numpy.random.seed for test methods to prevent
11871187
# random generation of the input singular matrix
11881188
def setup_method(self):
1189-
numpy.random.seed(76)
1189+
numpy.random.seed(81)
11901190

11911191
def get_tol(self, dtype):
11921192
tol = 1e-06

0 commit comments

Comments
 (0)