diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-10-30 19:19:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 19:19:15 +0200 |
commit | 207b51900e15cc7f89763a3bb1c565fe11cbb45d (patch) | |
tree | 0e37b11eafe495bfc66893f70e1e471bf52c3cd4 /tests/test-double-float.cpp | |
parent | 6e08281e588bbba1a5d180290a94a43f167f3a1a (diff) |
ggml : move FP16 <-> FP32 code to ggml-impl.h (#3861)
* ggml : move FP16 <-> FP32 stuff to ggml-impl.h
ggml-ci
* tests : fix ARM build
* ggml : explicitly initialize deprecated type traits
* ggml : add math.h to ggml-impl.h
* ggml : remove duplicate static assert macros
* ggml : prefix lookup tables with ggml_
ggml-ci
* ggml-impl : move extern "C" to start of file
Diffstat (limited to 'tests/test-double-float.cpp')
-rw-r--r-- | tests/test-double-float.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-double-float.cpp b/tests/test-double-float.cpp index afd7bf77..753dae91 100644 --- a/tests/test-double-float.cpp +++ b/tests/test-double-float.cpp @@ -4,7 +4,7 @@ #undef NDEBUG #include <cassert> -#if !defined(__riscv) && !defined(__s390__) +#if !defined(__riscv) && !defined(__s390__) && !defined(__ARM_NEON) #include <immintrin.h> #endif #include <cmath> |