Skip to content

Commit 489cdf4

Browse files
committed
ggml-cpu: clarify naming of dlf16
Signed-off-by: Aaron Teo <[email protected]>
1 parent 07de57c commit 489cdf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-cpu/simd-mappings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -965,8 +965,8 @@ static inline void __lsx_f16x4_store(ggml_fp16_t * x, __m128 y) {
965965
static inline float32x4_t __lzs_f16cx4_load(const ggml_fp16_t * x) {
966966
#if defined(__NNPA__)
967967
uint16x8_t v_x = vec_xl(0, (const ggml_fp16_t *)x);
968-
uint16x8_t nnpa_dlf16 = vec_convert_from_fp16(v_x, 0);
969-
return vec_extend_to_fp32_hi(nnpa_dlf16, 0);
968+
uint16x8_t v_xd = vec_convert_from_fp16(v_x, 0);
969+
return vec_extend_to_fp32_hi(v_xd, 0);
970970
#else
971971
float tmp[4];
972972

0 commit comments

Comments
 (0)