mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	eval-callback : fix conversion to float (#7184)
This commit is contained in:
		| @@ -52,15 +52,15 @@ static void ggml_print_tensor(uint8_t * data, ggml_type type, const int64_t * ne | ||||
|                     size_t i = i3 * nb[3] + i2 * nb[2] + i1 * nb[1] + i0 * nb[0]; | ||||
|                     float v; | ||||
|                     if (type == GGML_TYPE_F16) { | ||||
|                         v = ggml_fp16_to_fp32(*(ggml_fp16_t *) data + i); | ||||
|                         v = ggml_fp16_to_fp32(*(ggml_fp16_t *) &data[i]); | ||||
|                     } else if (type == GGML_TYPE_F32) { | ||||
|                         v = *(float *) data + i; | ||||
|                         v = *(float *) &data[i]; | ||||
|                     } else if (type == GGML_TYPE_I32) { | ||||
|                         v = (float) *(int32_t *) data + i; | ||||
|                         v = (float) *(int32_t *) &data[i]; | ||||
|                     } else if (type == GGML_TYPE_I16) { | ||||
|                         v = (float) *(int16_t *) data + i; | ||||
|                         v = (float) *(int16_t *) &data[i]; | ||||
|                     } else if (type == GGML_TYPE_I8) { | ||||
|                         v = (float) *(int8_t *) data + i; | ||||
|                         v = (float) *(int8_t *) &data[i]; | ||||
|                     } else { | ||||
|                         GGML_ASSERT(false); | ||||
|                     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 slaren
					slaren