4 references to Sum
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
3867
T result = Vector64.
Sum
(vector._lower);
3868
result = Scalar<T>.Add(result, Vector64.
Sum
(vector._upper));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
917
static T ISimdVector<Vector64<T>, T>.Sum(Vector64<T> vector) => Vector64.
Sum
(vector);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
1738
public static T Dot<T>(Vector64<T> left, Vector64<T> right) =>
Sum
(left * right);