From: Georgi Gerganov Date: Mon, 29 Apr 2024 14:55:02 +0000 (+0300) Subject: ggml : fix __MSC_VER -> _MSC_VER (llama/6977) X-Git-Tag: upstream/1.7.4~797 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=5167ebdfcaac7c26524d425afe980b5d13be1c46;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ggml : fix __MSC_VER -> _MSC_VER (llama/6977) ggml-ci --- diff --git a/ggml-impl.h b/ggml-impl.h index 3cb0a599..c4be87c2 100644 --- a/ggml-impl.h +++ b/ggml-impl.h @@ -320,7 +320,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)