From 81f28f25397cbb287859520ded8ebaa6fa5ee2c7 Mon Sep 17 00:00:00 2001 From: Stephan Walter Date: Tue, 4 Jul 2023 19:15:57 +0200 Subject: [PATCH] Remove call to ggml_cuda_mul_mat_get_wsize --- ggml.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml.c b/ggml.c index bf3a784c2..ff2f75118 100644 --- a/ggml.c +++ b/ggml.c @@ -16590,7 +16590,6 @@ void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph) if (ggml_cuda_can_mul_mat(node->src0, node->src1, node)) { node->n_tasks = 1; // TODO: this actually is doing nothing // the threads are still spinning - cur = ggml_cuda_mul_mat_get_wsize(node->src0, node->src1, node); } else #elif defined(GGML_USE_CLBLAST)