summaryrefslogtreecommitdiff
path: root/ggml/src/ggml-cuda/iqk_mmvq.cu
diff options
context:
space:
mode:
Diffstat (limited to 'ggml/src/ggml-cuda/iqk_mmvq.cu')
-rw-r--r--ggml/src/ggml-cuda/iqk_mmvq.cu15
1 files changed, 0 insertions, 15 deletions
diff --git a/ggml/src/ggml-cuda/iqk_mmvq.cu b/ggml/src/ggml-cuda/iqk_mmvq.cu
index 2340b54a..747af5a7 100644
--- a/ggml/src/ggml-cuda/iqk_mmvq.cu
+++ b/ggml/src/ggml-cuda/iqk_mmvq.cu
@@ -36,21 +36,6 @@ struct ggml_cuda_type_traits<GGML_TYPE_IQ5_K_R4> {
static constexpr int qi = QI5_XS;
};
-template<>
-struct ggml_cuda_type_traits<GGML_TYPE_IQ4_KS_R4> {
- static constexpr int qk = QK_K;
- static constexpr int qr = QR4_XS;
- static constexpr int qi = QI4_XS;
-};
-
-template<>
-struct ggml_cuda_type_traits<GGML_TYPE_IQ5_KS_R4> {
- static constexpr int qk = QK_K;
- static constexpr int qr = QR5_XS;
- static constexpr int qi = QI5_XS;
-};
-
-
// Reminder:
// constexpr int qk = ggml_cuda_type_traits<type>::qk;
// constexpr int qi = ggml_cuda_type_traits<type>::qi;