cupy.vdot#

cupy.vdot(a, b)[source]#

Returns the dot product of two vectors.

The input arrays are flattened into 1-D vectors and then it performs inner product of these vectors.

Parameters
Returns

Zero-dimensional array of the dot product result.

Return type

cupy.ndarray

See also

numpy.vdot()