Skip to content

Commit 8520fc3

Browse files
committed
Disable BLAS altogether - the bug is not just for qunatized mat mul
1 parent b3f460e commit 8520fc3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ggml.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5854,6 +5854,9 @@ static bool ggml_compute_forward_mul_mat_use_blas(
58545854
const int ne0 = dst->ne[0];
58555855
const int ne1 = dst->ne[1];
58565856

5857+
// TMP: disable BLAS for now there is definitely a bug
5858+
return false;
5859+
58575860
// TODO: find the optimal values for these
58585861
if (ggml_is_contiguous(src0) &&
58595862
ggml_is_contiguous(src1) && ((ne0 >= 32 && ne1 >= 32 && ne10 >= 32))) {

0 commit comments

Comments
 (0)