From 8502d5178eb1dd1900d69fa48f08c06724adff89 Mon Sep 17 00:00:00 2001 From: zrm Date: Tue, 23 May 2023 17:09:52 -0400 Subject: [PATCH] fix args --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 6017d9b39..8cfe9d14d 100644 --- a/ggml.c +++ b/ggml.c @@ -14099,7 +14099,7 @@ void clear_numa_thread_affinity(void) // TODO: Windows etc. // (the linux implementation may also work on BSD, someone should test) void set_numa_thread_affinity(int thread_n, int n_threads) { UNUSED(thread_n); UNUSED(n_threads); } -void clear_numa_thread_affinity(int thread_n, int n_threads) { UNUSED(thread_n); UNUSED(n_threads); } +void clear_numa_thread_affinity() {} #endif struct ggml_compute_state_shared {