Skip to content

Commit ec728e4

Browse files
authored
ggml : fix #if for f32_f32 mul_mat (CLBlast) (#1229)
1 parent 214b6a3 commit ec728e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11592,7 +11592,7 @@ void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph)
1159211592
#endif
1159311593
} else if (node->src0->type == GGML_TYPE_F32 && node->src1->type == GGML_TYPE_F32) {
1159411594
cur = 0;
11595-
#if defined(GGML_USE_ACCELERATE) || defined(GGML_USE_OPENBLAS) || defined(GGML_USE_CUBLAS)
11595+
#if defined(GGML_USE_ACCELERATE) || defined(GGML_USE_OPENBLAS) || defined(GGML_USE_CUBLAS) || defined(GGML_USE_CLBLAST)
1159611596
if (ggml_compute_forward_mul_mat_use_blas(node->src0, node->src1, node)) {
1159711597
node->n_tasks = 1;
1159811598
}

0 commit comments

Comments
 (0)