Skip to content

Commit f552040

Browse files
committed
Fix stride issue.
1 parent aecb7f9 commit f552040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/riscv64/sbgemv_t_vector.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT alpha, IFLOAT *a, BLASLONG lda, IFLOAT *
9898
a_ptr += lda;
9999
}
100100
} else {
101-
BLASLONG stride_x = inc_x * sizeof(FLOAT);
101+
BLASLONG stride_x = inc_x * sizeof(IFLOAT);
102102
for (i = 0; i < n; i++) {
103103
v_res = VFMVVF_FLOAT_M1(0, 1);
104104
gvl = VSETVL(m);

0 commit comments

Comments
 (0)