This commit is contained in:
zrm 2023-05-23 17:09:52 -04:00
parent 2c1b5ae197
commit 8502d5178e

2
ggml.c
View file

@ -14099,7 +14099,7 @@ void clear_numa_thread_affinity(void)
// TODO: Windows etc. // TODO: Windows etc.
// (the linux implementation may also work on BSD, someone should test) // (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 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 #endif
struct ggml_compute_state_shared { struct ggml_compute_state_shared {