From 110d143ecef69819c47507711104672e05d9c244 Mon Sep 17 00:00:00 2001 From: Dibakar Gope Date: Wed, 3 Jul 2024 12:41:13 +0000 Subject: [PATCH] Arm AArch64: minor code refactoring --- ggml/include/ggml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/include/ggml.h b/ggml/include/ggml.h index 0f663971d..42dd224e6 100644 --- a/ggml/include/ggml.h +++ b/ggml/include/ggml.h @@ -2413,7 +2413,7 @@ extern "C" { typedef void (*ggml_vec_dot_t) (int n, float * GGML_RESTRICT s, size_t bs, const void * GGML_RESTRICT x, size_t bx, const void * GGML_RESTRICT y, size_t by, int nrc); typedef void (*ggml_from_float_to_mat_t)(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int64_t nr, - int64_t k, int64_t bx); + int64_t k, int64_t bx); typedef void (*ggml_gemv_t) (int n, float * GGML_RESTRICT s, size_t bs, const void * GGML_RESTRICT vx, const void * GGML_RESTRICT vy, int nr, int nc); typedef void (*ggml_gemm_t) (int n, float * GGML_RESTRICT s, size_t bs, const void * GGML_RESTRICT vx,