aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ggml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ggml.c b/ggml.c
index d257c3d..4ba7ac9 100644
--- a/ggml.c
+++ b/ggml.c
@@ -16042,7 +16042,7 @@ static thread_ret_t ggml_graph_compute_thread(void * data) {
// wait for other threads to finish
const int last = node_n;
do {
- sched_yield();
+ //sched_yield();
node_n = atomic_load(&state->shared->node_n);
} while (node_n == last);
}