From 50a061b313e8e00227f555a51c1475e68b4bc519 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 8 Dec 2022 23:48:04 +0200 Subject: [PATCH] ggml : add alternative cblas_sgemm call --- ggml.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/ggml.c b/ggml.c index f379f55..6c38a03 100644 --- a/ggml.c +++ b/ggml.c @@ -4590,13 +4590,22 @@ void ggml_compute_forward_mul_mat_f16_f32( // } //} - // zT = y * xT { +#if 1 + // zT = y * xT cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans, ne11, ne01, ne10, - 1.0f, y, ne10, - x, ne10, + 1.0f, y, ne00, + x, ne00, 0.0f, d, ne01); +#else + // zT = (xT * y)T + cblas_sgemm(CblasColMajor, CblasTrans, CblasNoTrans, + ne01, ne11, ne10, + 1.0f, x, ne00, + y, ne00, + 0.0f, d, ne01); +#endif } } }