mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	ggml-cpu: add missing __func__
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user