We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94febbc + e2ae30b commit 179e3e2Copy full SHA for 179e3e2
array_api_strict/_linear_algebra_functions.py
@@ -86,5 +86,5 @@ def vecdot(x1: Array, x2: Array, /, *, axis: int = -1) -> Array:
86
x1_ = np.moveaxis(x1_, axis, -1)
87
x2_ = np.moveaxis(x2_, axis, -1)
88
89
- res = x1_[..., None, :] @ x2_[..., None]
+ res = np.conj(x1_[..., None, :]) @ x2_[..., None]
90
return Array._new(res[..., 0, 0], device=x1.device)
0 commit comments