Skip to content

Commit b999d68

Browse files
committed
Fixed typo error
1 parent 4a1be4b commit b999d68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pytensor/tensor/rewriting/linalg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ def local_svd_uv_simplify(fgraph, node):
400400
if (not compute_uv) and cl.op.core_op.compute_uv:
401401
compute_uv = True
402402
break
403+
403404
if compute_uv and not node.op.compute_uv:
404405
full_matrices = node.op.full_matrices
405-
return [SVD(x, full_matrices=full_matrices, compute_uv=compute_uv)]
406+
return [SVD(full_matrices=full_matrices, compute_uv=compute_uv)]

0 commit comments

Comments
 (0)