ggml : try fix arm build (whisper/0)

This commit is contained in:
Georgi Gerganov 2026-03-16 09:11:13 +02:00
parent f6da02c3f2
commit c0ccbd1f86
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ void ggml_vec_dot_nvfp4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const vo
float sumf = 0;
#if defined __ARM_NEON
#if defined(__ARM_NEON) && defined(__ARM_FEATURE_FMA)
const int8x16_t values = vld1q_s8(kvalues_mxfp4);
const uint8x16_t m4b = vdupq_n_u8(0x0f);
float32x4_t acc = vdupq_n_f32(0.0f);