Skip to content

Commit 16bb42a

Browse files
Skip float32 test
1 parent 18ed059 commit 16bb42a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/tensor/rewriting/test_linalg.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,9 @@ def test_invalid_batched_a(self):
360360
ids=["block_diag", "kron"],
361361
)
362362
def test_local_lift_through_linalg(constructor, f_op, f, g_op, g):
363+
if pytensor.config.floatX.endswith("32"):
364+
pytest.skip("Test is flaky at half precision")
365+
363366
A, B = list(map(constructor, "ab"))
364367
X = f(g(A, B))
365368

0 commit comments

Comments
 (0)