Skip to content

Commit c315044

Browse files
Fixed using keyword-only arg as positional in _linear_algebra_functions
1 parent 4e80b2e commit c315044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/tensor/_linear_algebra_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ def matmul(x1, x2, out=None, dtype=None, order="K"):
758758
)
759759

760760
if appended_axes:
761-
out = dpt.expand_dims(out, appended_axes)
761+
out = dpt.expand_dims(out, axis=appended_axes)
762762
orig_out = out
763763

764764
if res_dt != out.dtype:

0 commit comments

Comments
 (0)