Skip to content

Commit

Permalink
ggml : re-enable blas for src0 != F32 (ggerganov#1583)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Dec 1, 2023
1 parent aed9f88 commit 9afc93f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Expand Up @@ -9373,7 +9373,7 @@ static bool ggml_compute_forward_mul_mat_use_blas(
// TODO: find the optimal values for these
if (ggml_is_contiguous(src0) &&
ggml_is_contiguous(src1) &&
src0->type == GGML_TYPE_F32 &&
//src0->type == GGML_TYPE_F32 &&
src1->type == GGML_TYPE_F32 &&
(ne0 >= 32 && ne1 >= 32 && ne10 >= 32)) {

Expand Down

0 comments on commit 9afc93f

Please sign in to comment.