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