mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 23:29:44 +00:00
Disable BLAS altogether - the bug is not just for qunatized mat mul
This commit is contained in:
parent
b3f460e941
commit
8520fc310e
1 changed files with 3 additions and 0 deletions
3
ggml.c
3
ggml.c
|
@ -5854,6 +5854,9 @@ static bool ggml_compute_forward_mul_mat_use_blas(
|
||||||
const int ne0 = dst->ne[0];
|
const int ne0 = dst->ne[0];
|
||||||
const int ne1 = dst->ne[1];
|
const int ne1 = dst->ne[1];
|
||||||
|
|
||||||
|
// TMP: disable BLAS for now there is definitely a bug
|
||||||
|
return false;
|
||||||
|
|
||||||
// TODO: find the optimal values for these
|
// TODO: find the optimal values for these
|
||||||
if (ggml_is_contiguous(src0) &&
|
if (ggml_is_contiguous(src0) &&
|
||||||
ggml_is_contiguous(src1) && ((ne0 >= 32 && ne1 >= 32 && ne10 >= 32))) {
|
ggml_is_contiguous(src1) && ((ne0 >= 32 && ne1 >= 32 && ne10 >= 32))) {
|
||||||
|
|
Loading…
Reference in a new issue