From 94f10ca189249b3ee41e8a3ce1ea967703c7c50e Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Sat, 21 Jun 2025 14:53:15 +0800 Subject: [PATCH] ggml-cpu: fix float placeholder Signed-off-by: Aaron Teo --- ggml/src/ggml-cpu/simd-mappings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cpu/simd-mappings.h b/ggml/src/ggml-cpu/simd-mappings.h index 9b984fb0e..99a6eb5c0 100644 --- a/ggml/src/ggml-cpu/simd-mappings.h +++ b/ggml/src/ggml-cpu/simd-mappings.h @@ -969,7 +969,7 @@ static inline float32x4_t __lzs_f16cx4_load(const ggml_fp16_t * x) { uint16x8_t v_x = vec_xl(0, (const ggml_fp16_t *)x); uint16x8_t nnpa_dlf16 = vec_convert_from_fp16(v_x, 0); float32x4_t result = vec_extend_to_fp32_hi(nnpa_dlf16, 0); - printf("%s: %8d %8d %8d %8d\n", __func__, result[0], result[1], result[2], result[3]); + printf("%s: %8f %8f %8f %8f\n", __func__, result[0], result[1], result[2], result[3]); return result; #else float tmp[4];