ggml-cpu: remove sigint from fp16 store

for some reason, the function is not getting a hit when debugged with
    gdb. we will need to investigate further

Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
This commit is contained in:
Aaron Teo
2025-06-21 15:06:31 +08:00
parent 575ea9f6c6
commit 9330454cb8

View File

@@ -981,6 +981,7 @@ static inline float32x4_t __lzs_f16cx4_load(const ggml_fp16_t * x) {
#endif #endif
} }
// TODO: check why this function is not being hit at all
static inline void __lzs_f16cx4_store(ggml_fp16_t * x, float32x4_t v_y) { static inline void __lzs_f16cx4_store(ggml_fp16_t * x, float32x4_t v_y) {
#ifdef __NNPA__ #ifdef __NNPA__
float32x4_t zero = vec_splats(0.0f); float32x4_t zero = vec_splats(0.0f);
@@ -989,7 +990,6 @@ static inline void __lzs_f16cx4_store(ggml_fp16_t * x, float32x4_t v_y) {
x[1] = vec_extract(v_x, 1); x[1] = vec_extract(v_x, 1);
x[2] = vec_extract(v_x, 2); x[2] = vec_extract(v_x, 2);
x[3] = vec_extract(v_x, 3); x[3] = vec_extract(v_x, 3);
raise(SIGINT); // TODO: Ensure it is called
#else #else
float arr[4]; float arr[4];