From 7bf848454ddfd8713c50de6c55138388c2823a33 Mon Sep 17 00:00:00 2001 From: ColumbusAI <75283809+ColumbusAI@users.noreply.github.com> Date: Sat, 5 Apr 2025 09:57:53 -0700 Subject: [PATCH] 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. --- kernel/x86_64/zsum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/x86_64/zsum.c b/kernel/x86_64/zsum.c index 5973c1253..974d1b2f1 100644 --- a/kernel/x86_64/zsum.c +++ b/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;