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 6 months ago
parent
commit
7bf848454d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/zsum.c

+ 1
- 1
kernel/x86_64/zsum.c View File

@@ -54,7 +54,7 @@ static FLOAT sum_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x)


if (n <= 0 || inc_x <= 0) return(sumf); if (n <= 0 || inc_x <= 0) return(sumf);
if (inc_x == 1) { if (inc_x == 1) {
sumf = zsum_kernel(n, x);
sumf = zasum_kernel(n, x);
} }
else { else {
inc_x2 = 2 * inc_x; inc_x2 = 2 * inc_x;


Loading…
Cancel
Save