]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ggml : do not break cuBLAS build (Q4_3 is not yet implemented)
authorGeorgi Gerganov <redacted>
Thu, 20 Apr 2023 18:43:50 +0000 (21:43 +0300)
committerGeorgi Gerganov <redacted>
Thu, 20 Apr 2023 18:43:50 +0000 (21:43 +0300)
ggml.c

diff --git a/ggml.c b/ggml.c
index 50f114d9b59f429be928e6e87f94bb01f9164740..da0f5d1d549ab4f63bb057ca593e2cd09cced62d 100644 (file)
--- a/ggml.c
+++ b/ggml.c
@@ -8040,9 +8040,6 @@ static void ggml_compute_forward_mul_mat_q_f32(
         else if (type == GGML_TYPE_Q4_2) {
             dequantize_row_q_cuda = dequantize_row_q4_2_cuda;
         }
-        else if (type == GGML_TYPE_Q4_3) {
-            dequantize_row_q_cuda = dequantize_row_q4_3_cuda;
-        }
         else {
             GGML_ASSERT(false);
         }