From 78192476142f33d1799db2f8ee09865b39a05f54 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Fri, 10 May 2024 21:57:16 +0000 Subject: [PATCH] comment clarification. --- ggml-phi-knc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml-phi-knc.c b/ggml-phi-knc.c index 6670ee8fb..5f9eb70c4 100644 --- a/ggml-phi-knc.c +++ b/ggml-phi-knc.c @@ -82,8 +82,8 @@ inline static void GGML_F32x16_VEC_FMA(const float32x16_t *mvec1, const float32x "add\t$192,\t%%r10\n\t" // Move to the next float32x16_t block (192 bytes ahead) "add\t$192,\t%%r12\n\t" "vfmadd231ps\t%%zmm5,\t%%zmm6,\t%%zmm0\n\t" // Perform a fused multiply add - "cmp\t$3,\t%%r8\n\t" // Compare iterations to three. - "jge\t1b\n\t" // If there still three or more iterations left, loop. + "cmp\t$3,\t%%r8\n\t" // Compare iteration count to three. + "jge\t1b\n\t" // If there three or more iterations left, loop. "6:\n\t" // We know we are near the tail. handle 2, 1, and 0 cases. "cmp\t$0,\t%%r8\n\t" // Compare iterations to zero "jz\t2f\n\t" // Jump to label 2 if zero (end of loop)