From: apcameron Date: Sat, 27 May 2023 20:03:25 +0000 (+0100) Subject: ggml : add support for the RISCV architecture (#1616) X-Git-Tag: gguf-v0.4.0~709 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=a6704643b62243bc4b6bbcd727d63d44e01a1002;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : add support for the RISCV architecture (#1616) --- diff --git a/ggml.c b/ggml.c index 14972464..07ea92a5 100644 --- a/ggml.c +++ b/ggml.c @@ -186,10 +186,12 @@ typedef double ggml_float; #if defined(_MSC_VER) || defined(__MINGW32__) #include #else +#if !defined(__riscv) #include #endif #endif #endif +#endif #ifdef __F16C__