We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1547ea2 commit 0e571ddCopy full SHA for 0e571dd
ggml/src/ggml-impl.h
@@ -464,9 +464,9 @@ GGML_API void ggml_aligned_free(void * ptr, size_t size);
464
465
static inline float ggml_compute_fp16_to_fp32(ggml_fp16_t h) {
466
#ifdef __NNPA__
467
- printf("%s: __NNPA__ is defined.\n");
+ printf("%s: __NNPA__ is defined.\n", __func__);
468
#else
469
- printf("%s: __NNPA__ is not defined.\n");
+ printf("%s: __NNPA__ is not defined.\n", __func__);
470
#endif
471
472
const uint32_t w = (uint32_t) h << 16;
0 commit comments