Skip to content

Commit 912eab4

Browse files
committed
forgot to add one small (major) change
1 parent 7f179af commit 912eab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytensor/tensor/nlinalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def slogdet(x: ptb.TensorVariable) -> tuple[ptb.TensorVariable, ptb.TensorVariab
293293
``sign * exp(logabsdet)``.
294294
"""
295295
det_val = det(x)
296-
return [ptm.sign(det_val), ptm.log(ptm.abs(det_val))]
296+
return ptm.sign(det_val), ptm.log(ptm.abs(det_val))
297297

298298

299299
class Eig(Op):

0 commit comments

Comments
 (0)