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