Remove call to ggml_cuda_mul_mat_get_wsize

This commit is contained in:
Stephan Walter 2023-07-04 19:15:57 +02:00
parent f9c585f008
commit 81f28f2539

1
ggml.c
View File

@ -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)