Skip to content

Commit f0008f5

Browse files
authored
Merge pull request #5206 from ColumbusAI/develop
Update zsum.c -- fixed spelling error to successfully compile
2 parents f90eff3 + 7bf8484 commit f0008f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/x86_64/zsum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static FLOAT sum_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x)
5454

5555
if (n <= 0 || inc_x <= 0) return(sumf);
5656
if (inc_x == 1) {
57-
sumf = zsum_kernel(n, x);
57+
sumf = zasum_kernel(n, x);
5858
}
5959
else {
6060
inc_x2 = 2 * inc_x;

0 commit comments

Comments
 (0)