From 08d116cd02b1758fb7939b79dab42a9406264e73 Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Wed, 24 Sep 2025 08:30:26 +0300 Subject: [PATCH] Cleanup --- ggml/src/ggml.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c index 4794df2a..078d7219 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -22740,9 +22740,6 @@ static thread_ret_t ggml_graph_compute_thread(void * data) { int64_t tim1 = ggml_time_us(); #endif node_n = ggml_compute_forward(¶ms, node, cgraph, node_n); - //if (ggml_compute_forward(¶ms, node, node_n < cgraph->n_nodes-1 ? cgraph->nodes[node_n+1] : NULL)) { - // ++node_n; - //} #if IK_PRINT_TIMING int64_t tim2 = ggml_time_us(); t_eval += tim2 - tim1;