From: Georgi Gerganov Date: Thu, 20 Apr 2023 18:43:50 +0000 (+0300) Subject: ggml : do not break cuBLAS build (Q4_3 is not yet implemented) X-Git-Tag: gguf-v0.4.0~912 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=8a1756abdf1f48cb4dcb898bc8fbe9102ef49dc6;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : do not break cuBLAS build (Q4_3 is not yet implemented) --- diff --git a/ggml.c b/ggml.c index 50f114d9..da0f5d1d 100644 --- 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); }