diff options
author | apcameron <37645737+apcameron@users.noreply.github.com> | 2023-05-27 21:03:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-27 23:03:25 +0300 |
commit | a6704643b62243bc4b6bbcd727d63d44e01a1002 (patch) | |
tree | b36b8e53922c25621830eb50bdbd8fbe7b45fb99 /ggml.c | |
parent | 0df7d63e5ba0ab8856476e121a03b985d6f15c9d (diff) |
ggml : add support for the RISCV architecture (#1616)
Diffstat (limited to 'ggml.c')
-rw-r--r-- | ggml.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -186,10 +186,12 @@ typedef double ggml_float; #if defined(_MSC_VER) || defined(__MINGW32__) #include <intrin.h> #else +#if !defined(__riscv) #include <immintrin.h> #endif #endif #endif +#endif #ifdef __F16C__ |