From 12115e2e0cea7a0e3891fa6b868b21c7b7ea2baa Mon Sep 17 00:00:00 2001 From: Diego Devesa Date: Fri, 29 Nov 2024 21:43:42 +0100 Subject: [PATCH] Update ggml/src/ggml-cpu/amx/common.h Co-authored-by: Georgi Gerganov --- ggml/src/ggml-cpu/amx/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cpu/amx/common.h b/ggml/src/ggml-cpu/amx/common.h index 66787ec8a..0b0657289 100644 --- a/ggml/src/ggml-cpu/amx/common.h +++ b/ggml/src/ggml-cpu/amx/common.h @@ -74,7 +74,7 @@ inline void parallel_for(int nth, int n, const func_t& f) { } template -inline void parallel_for_ggml(const ggml_compute_params * params, int n, const func_t& f) { +inline void parallel_for_ggml(const ggml_compute_params * params, int n, const func_t & f) { int tbegin, tend; balance211(n, params->nth, params->ith, tbegin, tend); f(tbegin, tend);