undo signature change in linalg

This commit is contained in:
Justus Kuhlmann 2025-11-04 09:58:34 +00:00
commit 51b9d2fb11

View file

@ -55,7 +55,7 @@ def matmul(*operands) -> ndarray:
return res
else:
def multi_dot(operands, part: Literal["Real", "Imag"]):
def multi_dot(operands):
stack = operands[0]
for op in operands[1:]:
stack = stack @ op