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 59b48e4 commit 6cebee2Copy full SHA for 6cebee2
ggml/src/ggml-cpu/ggml-cpu.c
@@ -72,6 +72,9 @@
72
#define UNUSED GGML_UNUSED
73
#define SWAP(x, y, T) do { T SWAP = x; (x) = y; (y) = SWAP; } while (0)
74
75
+// precomputed f32 table for f16 (256 KB) (simd-mappings.h)
76
+float ggml_table_f32_f16[1 << 16];
77
+
78
#if defined(__ARM_ARCH)
79
struct ggml_arm_arch_features_type {
80
int sve_cnt;
ggml/src/ggml.c
@@ -61,9 +61,6 @@
61
#define m512i(p) (__m512i)(p)
62
#endif
63
64
-// precomputed f32 table for f16 (256 KB) (ggml-impl.h)
65
-float ggml_table_f32_f16[1 << 16];
66
-
67
#if defined(__linux__) || \
68
defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
69
(defined(__APPLE__) && !TARGET_OS_TV && !TARGET_OS_WATCH)
0 commit comments