We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5082fe4 + 95f7f02 commit 8dd3515Copy full SHA for 8dd3515
1 file changed
kernel/mips/dot.c
@@ -42,7 +42,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
42
while(i < n)
43
{
44
#if defined(DSDOT)
45
- dot += (double)(y[iy] * (double)x[ix] ;
+ dot += (double)y[iy] * (double)x[ix] ;
46
#else
47
dot += y[iy] * x[ix];
48
#endif
0 commit comments