Skip to content

Commit 0e571dd

Browse files
committed
ggml-cpu: add missing __func__
Signed-off-by: Aaron Teo <[email protected]>
1 parent 1547ea2 commit 0e571dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,9 @@ GGML_API void ggml_aligned_free(void * ptr, size_t size);
464464

465465
static inline float ggml_compute_fp16_to_fp32(ggml_fp16_t h) {
466466
#ifdef __NNPA__
467-
printf("%s: __NNPA__ is defined.\n");
467+
printf("%s: __NNPA__ is defined.\n", __func__);
468468
#else
469-
printf("%s: __NNPA__ is not defined.\n");
469+
printf("%s: __NNPA__ is not defined.\n", __func__);
470470
#endif
471471

472472
const uint32_t w = (uint32_t) h << 16;

0 commit comments

Comments
 (0)