arm64 support for windows (#3007)
Co-authored-by: Cebtenzzre <cebtenzzre@gmail.com>
This commit is contained in:
parent
4f7cd6ba9c
commit
b52b29ab9d
4 changed files with 20 additions and 6 deletions
2
ggml.h
2
ggml.h
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue