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 816937d commit eeaf7ddCopy full SHA for eeaf7dd
pytensor/tensor/slinalg.py
@@ -467,10 +467,10 @@ def solve_triangular(
467
b_ndim = _default_b_ndim(b, b_ndim)
468
469
if trans in [1, "T", True]:
470
- a = a.T
+ a = a.mT
471
lower = not lower
472
if trans in [2, "C"]:
473
- a = a.conj().T
+ a = a.conj().mT
474
475
476
ret = Blockwise(
@@ -586,7 +586,7 @@ def solve(
586
587
588
if transposed:
589
590
591
592
return Blockwise(
0 commit comments