From 575ea9f6c67d15adbda5c063988caaeff4b34614 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Sat, 21 Jun 2025 15:00:46 +0800 Subject: [PATCH] ggml-cpu: fp16 load ensured to hit Signed-off-by: Aaron Teo --- ggml/src/ggml-cpu/simd-mappings.h | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml-cpu/simd-mappings.h b/ggml/src/ggml-cpu/simd-mappings.h index 6e4823cff..e11b134c1 100644 --- a/ggml/src/ggml-cpu/simd-mappings.h +++ b/ggml/src/ggml-cpu/simd-mappings.h @@ -967,7 +967,6 @@ static inline float32x4_t __lzs_f16cx4_load(const ggml_fp16_t * x) { #ifdef __NNPA__ uint16x8_t v_x = vec_xl(0, (const ggml_fp16_t *)x); uint16x8_t nnpa_dlf16 = vec_convert_from_fp16(v_x, 0); - raise(SIGINT); // TODO: Ensure it is called return vec_extend_to_fp32_hi(nnpa_dlf16, 0); #else float tmp[4];