Skip to content

Commit 179e3e2

Browse files
authored
Merge pull request #98 from asmeurer/vecdot-conj
Conjugate the first argument in vecdot
2 parents 94febbc + e2ae30b commit 179e3e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_strict/_linear_algebra_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,5 @@ def vecdot(x1: Array, x2: Array, /, *, axis: int = -1) -> Array:
8686
x1_ = np.moveaxis(x1_, axis, -1)
8787
x2_ = np.moveaxis(x2_, axis, -1)
8888

89-
res = x1_[..., None, :] @ x2_[..., None]
89+
res = np.conj(x1_[..., None, :]) @ x2_[..., None]
9090
return Array._new(res[..., 0, 0], device=x1.device)

0 commit comments

Comments
 (0)