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 d0b19e2 commit c689549Copy full SHA for c689549
tests/tensor/rewriting/test_linalg.py
@@ -94,7 +94,8 @@ def test_generic_solve_to_solve_triangular():
94
b2 = solve(U, x)
95
f = pytensor.function([A, x], b1)
96
97
- X = np.random.normal(size=(10, 10)).astype(config.floatX)
+ rng = np.random.default_rng(97)
98
+ X = rng.normal(size=(10, 10)).astype(config.floatX)
99
X = X @ X.T
100
X_chol = np.linalg.cholesky(X)
101
eye = np.eye(10, dtype=config.floatX)
0 commit comments