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 c3ea58a commit a431782Copy full SHA for a431782
ggml/src/ggml-cpu/ggml-cpu.c
@@ -2369,7 +2369,7 @@ void ggml_numa_init(enum ggml_numa_strategy numa_flag) {
2369
// figure out which node we're on
2370
uint current_cpu;
2371
int getcpu_ret = 0;
2372
-#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 28) || defined(__COSMOPOLITAN__)
+#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 33) || defined(__COSMOPOLITAN__)
2373
getcpu_ret = getcpu(¤t_cpu, &g_state.numa.current_node);
2374
#else
2375
// old glibc doesn't have a wrapper for this call. Fall back on direct syscall
0 commit comments