Skip to content

Commit

Permalink
ggml : fix MIN / MAX macros (#6904)
Browse files Browse the repository at this point in the history
ggml-ci
  • Loading branch information
ggerganov committed Apr 25, 2024
1 parent aa750c1 commit 5477041
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions ggml-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
#include <string.h> // memcpy
#include <math.h> // 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
Expand Down
6 changes: 0 additions & 6 deletions ggml-quants.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
#include <stdlib.h> // for qsort
#include <stdio.h> // 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
Expand Down

0 comments on commit 5477041

Please sign in to comment.