From 0e571dd3d8f864d70158e34c42c4997f6a3e9bb5 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Sat, 21 Jun 2025 18:10:26 +0800 Subject: [PATCH] ggml-cpu: add missing __func__ Signed-off-by: Aaron Teo --- ggml/src/ggml-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml/src/ggml-impl.h b/ggml/src/ggml-impl.h index 19dcd0829..46545521e 100644 --- a/ggml/src/ggml-impl.h +++ b/ggml/src/ggml-impl.h @@ -464,9 +464,9 @@ GGML_API void ggml_aligned_free(void * ptr, size_t size); static inline float ggml_compute_fp16_to_fp32(ggml_fp16_t h) { #ifdef __NNPA__ - printf("%s: __NNPA__ is defined.\n"); + printf("%s: __NNPA__ is defined.\n", __func__); #else - printf("%s: __NNPA__ is not defined.\n"); + printf("%s: __NNPA__ is not defined.\n", __func__); #endif const uint32_t w = (uint32_t) h << 16;