Skip to content

Commit e646298

Browse files
committed
ggml-cpu: fmt
1 parent c1f5932 commit e646298

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ggml/src/ggml-cpu/ggml-cpu.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3289,11 +3289,10 @@ void ggml_cpu_fp16_to_fp32(const ggml_fp16_t * x, float * y, int64_t n) {
32893289

32903290
vfloat16m2_t ax1 = __riscv_vle16_v_f16m2((const _Float16*)x + i + epr, epr);
32913291
vfloat32m4_t ay1 = __riscv_vfwcvt_f_f_v_f32m4(ax1, epr);
3292-
32933292
__riscv_vse32_v_f32m4(y + i + epr, ay1, epr);
32943293
}
32953294

3296-
// handle leftovers
3295+
// leftovers
32973296
int vl;
32983297
for (i = np; i < n; i += vl) {
32993298
vl = __riscv_vsetvl_e16m2(n - i);

0 commit comments

Comments
 (0)