From c2c31660a5ab85cb1b3141d9ce9a23a3930bf40c Mon Sep 17 00:00:00 2001 From: root Date: Thu, 8 Feb 2024 21:41:36 +0000 Subject: [PATCH] add missing enum ggml_numa_strategies declaration --- ggml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.h b/ggml.h index 3e3bb0e21..58b044526 100644 --- a/ggml.h +++ b/ggml.h @@ -667,7 +667,7 @@ extern "C" { GGML_API void ggml_print_backtrace(void); - GGML_API void ggml_numa_init(uint32_t numa); // call once for better performance on NUMA systems + GGML_API void ggml_numa_init(enum ggml_numa_strategies numa); // call once for better performance on NUMA systems GGML_API bool ggml_is_numa(void); // true if init detected that system has >1 NUMA node GGML_API void ggml_print_object (const struct ggml_object * obj);