From 8422686d0ac434e47296edfe214826cbc2143cf5 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Thu, 4 Apr 2024 21:23:55 +0100 Subject: [PATCH] Update ggml-phi-knc.c Co-authored-by: Jared Van Bortel --- ggml-phi-knc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-phi-knc.c b/ggml-phi-knc.c index 710da27a6..bbecb8014 100644 --- a/ggml-phi-knc.c +++ b/ggml-phi-knc.c @@ -31,7 +31,7 @@ inline static void GGML_F32x16_VEC_ZERO(float32x16_t *target) } -// Multiply each item in mvec1 with the corresponding item in mvec2, adding the result to the corresponding item in sum. optionally clear the sum before starting. +// Multiply each item in mvec1 with the corresponding item in mvec2, adding the result to the corresponding item in sum. optionally clear the sum before starting. inline static void GGML_F32x16_VEC_FMA(const float32x16_t *mvec1, const float32x16_t *mvec2, float32x16_t *sumvec, size_t iterations, int clear) { uint8_t zero[4] __attribute__((aligned(64))) = {0,0,0,0};