From: Georgi Gerganov Date: Thu, 25 Apr 2024 12:12:28 +0000 (+0300) Subject: ggml : fix MIN / MAX macros (#6904) X-Git-Tag: upstream/0.0.4488~1759 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=54770413c484660d021dd51b5dbacab7880b8827;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : fix MIN / MAX macros (#6904) ggml-ci --- diff --git a/ggml-impl.h b/ggml-impl.h index 2ffacc29..2087f7de 100644 --- a/ggml-impl.h +++ b/ggml-impl.h @@ -11,6 +11,12 @@ #include // memcpy #include // fabsf +#undef MIN +#undef MAX + +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#define MAX(a, b) ((a) > (b) ? (a) : (b)) + #ifdef __cplusplus extern "C" { #endif diff --git a/ggml-quants.c b/ggml-quants.c index 11e11c21..c147531d 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -14,12 +14,6 @@ #include // for qsort #include // for GGML_ASSERT -#undef MIN -#undef MAX - -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#define MAX(a, b) ((a) > (b) ? (a) : (b)) - #define UNUSED GGML_UNUSED // some compilers don't provide _mm256_set_m128i, e.g. gcc 7