summaryrefslogtreecommitdiff
path: root/ggml.c
diff options
context:
space:
mode:
authorEric Sommerlade <es0m@users.noreply.github.com>2023-09-13 02:54:20 +0100
committerGitHub <noreply@github.com>2023-09-12 21:54:20 -0400
commitb52b29ab9d601bb298050bcd2261169bc917ba2c (patch)
tree5d0f8bf56ba8a22be66363e18679e754f79a8ebe /ggml.c
parent4f7cd6ba9c88d3ca9a207b6e04f8b2b1efd707b8 (diff)
arm64 support for windows (#3007)
Co-authored-by: Cebtenzzre <cebtenzzre@gmail.com>
Diffstat (limited to 'ggml.c')
-rw-r--r--ggml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml.c b/ggml.c
index 3f72379c..a9cffb43 100644
--- a/ggml.c
+++ b/ggml.c
@@ -283,7 +283,7 @@ typedef double ggml_float;
// 16-bit float
// on Arm, we use __fp16
// on x86, we use uint16_t
-#ifdef __ARM_NEON
+#if defined(__ARM_NEON) && !defined(_MSC_VER)
// if YCM cannot find <arm_neon.h>, make a symbolic link to it, for example:
//