aboutsummaryrefslogtreecommitdiff
path: root/ggml.c
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-03-24 23:47:06 +0200
committerGeorgi Gerganov <ggerganov@gmail.com>2023-03-24 23:47:06 +0200
commit8520fc310eab87f2c4612f2a00d4adbd44a20d0d (patch)
treee0f4535f853c99d152e098b3be6a14690a978858 /ggml.c
parentb3f460e94139cb24b0af81cc8bc10eb86269d704 (diff)
Disable BLAS altogether - the bug is not just for qunatized mat mul
Diffstat (limited to 'ggml.c')
-rw-r--r--ggml.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ggml.c b/ggml.c
index b428d70..db68ed1 100644
--- a/ggml.c
+++ b/ggml.c
@@ -5854,6 +5854,9 @@ static bool ggml_compute_forward_mul_mat_use_blas(
const int ne0 = dst->ne[0];
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
if (ggml_is_contiguous(src0) &&
ggml_is_contiguous(src1) && ((ne0 >= 32 && ne1 >= 32 && ne10 >= 32))) {