Skip to content

Commit ebf4cd1

Browse files
committed
Fix typo.
1 parent 1bb72b2 commit ebf4cd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/riscv64/sgemm_kernel_16x8_zvl256b.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ static FORCEINLINE FLOAT* M_TAIL_ONE(BLASLONG K, const BLASLONG M, const BLASLON
663663
if (S2) {
664664
vfloat32m8_t c18 = __riscv_vle32_v_f32m8(C, N * 8);
665665
vfloat32m8_t c28 = __riscv_vcreate_v_f32m1_f32m8(result0, result1, result2, result3, result4, result5, result6, result7);
666-
c18 = __riscv_vfmacc_vf_f32m8(c18, alpha, c28, N);
666+
c18 = __riscv_vfmacc_vf_f32m8(c18, alpha, c28, N * 8);
667667
__riscv_vse32_v_f32m8(C, c18, N * 8);
668668
} else {
669669
vfloat32m1x4_t c14 = __riscv_vlsseg4e32_v_f32m1x4(C + 0, ldc * sizeof(float), N);

0 commit comments

Comments
 (0)