Browse Source

Fix early bailout

tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
772b0cc715
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/riscv64/dot_vector.c

+ 1
- 1
kernel/riscv64/dot_vector.c View File

@@ -63,7 +63,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
BLASLONG i=0, j=0;
double dot = 0.0 ;

if ( n < 0 ) return(dot);
if ( n < 1 ) return(dot);

FLOAT_V_T vr, vx, vy;
unsigned int gvl = 0;


Loading…
Cancel
Save