ggml : use SYS_get_cpu if SYS_getcpu is not defined (#5906)

Fixes #5694
Fixes ggerganov/whisper.cpp#1894
This commit is contained in:
Jared Van Bortel 2024-03-06 15:42:23 -05:00 committed by GitHub
parent e25fb4b18f
commit e04e04f8fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
ggml.c
View File

@ -2154,6 +2154,9 @@ void ggml_numa_init(enum ggml_numa_strategy numa_flag) {
getcpu_ret = getcpu(&current_cpu, &g_state.numa.current_node);
#else
// old glibc doesn't have a wrapper for this call. Fall back on direct syscall
# if !defined(SYS_getcpu) && defined(SYS_get_cpu)
# define SYS_getcpu SYS_get_cpu // some older glibc versions use this name
# endif
getcpu_ret = syscall(SYS_getcpu, &current_cpu, &g_state.numa.current_node);
#endif