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);