From 489cdf44bff02f1c7e1db2334fc376fc3e417f5f Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Sat, 21 Jun 2025 23:34:42 +0800 Subject: [PATCH] ggml-cpu: clarify naming of dlf16 Signed-off-by: Aaron Teo --- ggml/src/ggml-cpu/simd-mappings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml/src/ggml-cpu/simd-mappings.h b/ggml/src/ggml-cpu/simd-mappings.h index de14462e24..e5e607a8ab 100644 --- a/ggml/src/ggml-cpu/simd-mappings.h +++ b/ggml/src/ggml-cpu/simd-mappings.h @@ -965,8 +965,8 @@ static inline void __lsx_f16x4_store(ggml_fp16_t * x, __m128 y) { static inline float32x4_t __lzs_f16cx4_load(const ggml_fp16_t * x) { #if defined(__NNPA__) uint16x8_t v_x = vec_xl(0, (const ggml_fp16_t *)x); - uint16x8_t nnpa_dlf16 = vec_convert_from_fp16(v_x, 0); - return vec_extend_to_fp32_hi(nnpa_dlf16, 0); + uint16x8_t v_xd = vec_convert_from_fp16(v_x, 0); + return vec_extend_to_fp32_hi(v_xd, 0); #else float tmp[4];