Skip to content

Commit f815fe4

Browse files
committed
ggml : use blas even if src0 is not F32
1 parent 0dab8cd commit f815fe4

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
@@ -9373,7 +9373,7 @@ static bool ggml_compute_forward_mul_mat_use_blas(
93739373
// TODO: find the optimal values for these
93749374
if (ggml_is_contiguous(src0) &&
93759375
ggml_is_contiguous(src1) &&
9376-
src0->type == GGML_TYPE_F32 &&
9376+
//src0->type == GGML_TYPE_F32 &&
93779377
src1->type == GGML_TYPE_F32 &&
93789378
(ne0 >= 32 && ne1 >= 32 && ne10 >= 32)) {
93799379

0 commit comments

Comments
 (0)