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 f998b60 commit 11c1c22Copy full SHA for 11c1c22
tests/tensor/rewriting/test_linalg.py
@@ -921,14 +921,6 @@ def test_rewrite_cholesky_diag_to_sqrt_diag_not_applied():
921
nodes = f_rewritten.maker.fgraph.apply_nodes
922
assert any(isinstance(node.op, Cholesky) for node in nodes)
923
924
- # Case 2 : eye is degenerate
925
- x = pt.scalar("x")
926
- y = pt.eye(1) * x
927
- z_cholesky = pt.linalg.cholesky(y)
928
- f_rewritten = function([x], z_cholesky, mode="FAST_RUN")
929
- nodes = f_rewritten.maker.fgraph.apply_nodes
930
- assert any(isinstance(node.op, Cholesky) for node in nodes)
931
-
932
933
def test_slogdet_specialization():
934
x, a = pt.dmatrix("x"), np.random.rand(20, 20)
0 commit comments