8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60aea02 commit 8b5e19aCopy full SHA for 8b5e19a
ggml/src/ggml.c
@@ -64,8 +64,10 @@
64
// precomputed f32 table for f16 (256 KB) (ggml-impl.h)
65
float ggml_table_f32_f16[1 << 16];
66
67
-#if (defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && \
68
- (!defined(TARGET_OS_TV) && !defined(TARGET_OS_WATCH))
+#if defined(__linux__) || \
+ defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
69
+ (defined(__APPLE__) && !TARGET_OS_TV && !TARGET_OS_WATCH)
70
+
71
#include <unistd.h>
72
#include <sys/types.h>
73
#include <sys/stat.h>
0 commit comments