diff options
author | Eric Sommerlade <es0m@users.noreply.github.com> | 2023-09-13 02:54:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-12 21:54:20 -0400 |
commit | b52b29ab9d601bb298050bcd2261169bc917ba2c (patch) | |
tree | 5d0f8bf56ba8a22be66363e18679e754f79a8ebe /ggml.h | |
parent | 4f7cd6ba9c88d3ca9a207b6e04f8b2b1efd707b8 (diff) |
arm64 support for windows (#3007)
Co-authored-by: Cebtenzzre <cebtenzzre@gmail.com>
Diffstat (limited to 'ggml.h')
-rw-r--r-- | ggml.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -270,7 +270,7 @@ extern "C" { #if defined(__ARM_NEON) && defined(__CUDACC__) typedef half ggml_fp16_t; -#elif defined(__ARM_NEON) +#elif defined(__ARM_NEON) && !defined(_MSC_VER) typedef __fp16 ggml_fp16_t; #else typedef uint16_t ggml_fp16_t; |