Browse Source
Update zsum.c -- fixed spelling error to successfully compile
spelling error where zsum_kernel is used and it should be zasum_kernel. Will not compile without fix.
tags/v0.3.30
ColumbusAI
GitHub
5 months ago
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
kernel/x86_64/zsum.c
|
|
@@ -54,7 +54,7 @@ static FLOAT sum_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x) |
|
|
|
|
|
|
|
if (n <= 0 || inc_x <= 0) return(sumf); |
|
|
|
if (inc_x == 1) { |
|
|
|
sumf = zsum_kernel(n, x); |
|
|
|
sumf = zasum_kernel(n, x); |
|
|
|
} |
|
|
|
else { |
|
|
|
inc_x2 = 2 * inc_x; |
|
|
|