diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-11-13 16:55:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 16:55:52 +0200 |
commit | 3d68f364f15778dc326f5024f2e5af1ad6dfddef (patch) | |
tree | c0c11d150ba56b4f646261790728622efa30d8a1 /ggml-impl.h | |
parent | c049b37d7baf558944501705b91ac89b26ee3e41 (diff) |
ggml : sync (im2col, GPU conv, 32-bit arm compat) (#4060)
ggml-ci
Diffstat (limited to 'ggml-impl.h')
-rw-r--r-- | ggml-impl.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ggml-impl.h b/ggml-impl.h index d88f2614..06c07339 100644 --- a/ggml-impl.h +++ b/ggml-impl.h @@ -39,12 +39,6 @@ extern "C" { #endif #endif -#undef MIN -#undef MAX - -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#define MAX(a, b) ((a) > (b) ? (a) : (b)) - // 16-bit float // on Arm, we use __fp16 // on x86, we use uint16_t |