Update ggml/src/ggml-cpu/amx/common.h

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
This commit is contained in:
Diego Devesa 2024-11-29 21:43:42 +01:00 committed by GitHub
parent f4898e16b5
commit 12115e2e0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,7 +74,7 @@ inline void parallel_for(int nth, int n, const func_t& f) {
}
template <typename func_t>
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);