diff options
author | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-05-27 09:51:08 +0200 |
---|---|---|
committer | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-06-22 12:02:49 +0300 |
commit | 19c578b413fb53f432319a99fbd658ed30faf966 (patch) | |
tree | 68aa0ec1ecaf75ebd1340b930f2e5e2ec1951a31 /sgemm.cpp | |
parent | c5a8d4b749352645afd4c024f85d6eca2ca72c6d (diff) |
iqk_mul_mat for llama.cpp
Diffstat (limited to 'sgemm.cpp')
-rw-r--r-- | sgemm.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -849,6 +849,11 @@ class tinyBLAS_Q0_AVX { * @param Ctype is GGML data type of `C` * @return true if this function was able to service the matmul request */ + +bool iqk_mul_mat(long Nx, long Ny, long ne00, int typeA, const void * A, const void * B, + float * C, long stride_C, int ith, int nth); + + bool llamafile_sgemm(int64_t m, int64_t n, int64_t k, const void *A, int64_t lda, const void *B, int64_t ldb, void *C, int64_t ldc, int ith, int nth, int task, int Atype, int Btype, int Ctype) { @@ -861,6 +866,18 @@ bool llamafile_sgemm(int64_t m, int64_t n, int64_t k, const void *A, int64_t lda assert(nth > 0); assert(ith < nth); + if (Btype == GGML_TYPE_Q8_K && Ctype == GGML_TYPE_F32) { + if (iqk_mul_mat(m, n, k * QK_K, Atype, A, B, (float *)C, ldc, ith, nth)) { + return true; + } + } + if ((Btype == GGML_TYPE_Q8_0 || Btype == GGML_TYPE_Q8_1) && Ctype == GGML_TYPE_F32) { + assert(QK8_0 == QK8_1 == QK4_0 == QK4_1 == QK5_0 == QK5_1 == 32); + if (iqk_mul_mat(m, n, k * QK8_0, Atype, A, B, (float *)C, ldc, ith, nth)) { + return true; + } + } + if (Ctype != GGML_TYPE_F32) return false; |