diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-29 17:55:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 17:55:02 +0300 |
commit | 544f1f10adeec3d5ed91c4d3bd3f903904ecea63 (patch) | |
tree | 51f0d653212d2932cabd3717bf4b912c0eae4644 | |
parent | ffe666572f98a686b17a2cd1dbf4c0a982e5ac0a (diff) |
ggml : fix __MSC_VER -> _MSC_VER (#6977)
ggml-ci
-rw-r--r-- | ggml-impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml-impl.h b/ggml-impl.h index 2087f7de..94a1cc66 100644 --- a/ggml-impl.h +++ b/ggml-impl.h @@ -313,7 +313,7 @@ inline static int32x4_t ggml_vdotq_s32(int32x4_t acc, int8x16_t a, int8x16_t b) #endif // defined(__ARM_NEON) -#if defined(__ARM_NEON) && !defined(__MSC_VER) +#if defined(__ARM_NEON) && !defined(_MSC_VER) #define GGML_COMPUTE_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x) #define GGML_COMPUTE_FP32_TO_FP16(x) ggml_compute_fp32_to_fp16(x) |