ggml : correct behaviour of ggml_vec_sum_f32 (#390)

pull/404/head
Abitofevrything 1 year ago committed by GitHub
parent 08dc705a69
commit 8d7b29cedd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1109,8 +1109,8 @@ inline static void ggml_vec_sum_f32(const int n, float * s, const float * x) {
ggml_float sum = 0.0;
for (int i = 0; i < n; ++i) {
sum += x[i];
*s += sum;
}
*s = sum;
#else
vDSP_sve(x, 1, s, n);
#endif

Loading…
Cancel
Save