From aa33f281e34b678f37394ac9fe379f0c151ffbf6 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Tue, 2 Apr 2024 17:01:53 +0000 Subject: [PATCH] formatting. --- ggml-phi-knc-dot_q5_K_q8_K.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-phi-knc-dot_q5_K_q8_K.c b/ggml-phi-knc-dot_q5_K_q8_K.c index 02545057f..b8262b071 100644 --- a/ggml-phi-knc-dot_q5_K_q8_K.c +++ b/ggml-phi-knc-dot_q5_K_q8_K.c @@ -166,7 +166,7 @@ inline static void GGML_5bit_Unpack (const uint8x16_t * q4, const uint8_t * q1, // A function for getting the dot product of two vectors, one of 5 bit resolution, and one of 8. // Used during inference, if your model prints "llama_model_loader: - type q5_K: XXX tensors", and XXX is not zero. :) -void ggml_vec_dot_q5_K_q8_K(int n, float * restrict s, size_t bs, const void * restrict vx, size_t bx, const void * restrict vy, size_t by, int nrc) { +void ggml_vec_dot_q5_K_q8_K(int n, float * restrict s, size_t bs, const void * restrict vx, size_t bx, const void * restrict vy, size_t by, int nrc) { /* interpret X and Y as vectors. */ const block_q5_K * restrict x = vx;