diff options
author | Iwan Kawrakow <iwan.kawrakow@gmail.com> | 2024-07-29 21:01:05 +0300 |
---|---|---|
committer | Kawrakow <48489457+ikawrakow@users.noreply.github.com> | 2024-08-01 09:38:06 +0200 |
commit | 22d1568c1c3fa03433c65bb0abae4e731321bd31 (patch) | |
tree | 209b3a7fac863304a54e04da7ef8f943fddee931 /ggml/src/ggml-cuda/common.cuh | |
parent | d8d022a01bfbef51d9af7d100e81d4744c9a38ec (diff) |
iq5_k: CUDA dot product still not working
Diffstat (limited to 'ggml/src/ggml-cuda/common.cuh')
-rw-r--r-- | ggml/src/ggml-cuda/common.cuh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ggml/src/ggml-cuda/common.cuh b/ggml/src/ggml-cuda/common.cuh index ff37dd56..516e74d8 100644 --- a/ggml/src/ggml-cuda/common.cuh +++ b/ggml/src/ggml-cuda/common.cuh @@ -686,8 +686,8 @@ struct ggml_cuda_type_traits<GGML_TYPE_IQ4_K> { template<> struct ggml_cuda_type_traits<GGML_TYPE_IQ5_K> { static constexpr int qk = QK_K; - static constexpr int qr = QR4_XS; - static constexpr int qi = QI4_XS; + static constexpr int qr = QR5_XS; + static constexpr int qi = QI5_XS; }; template<> |