From 73cc5b88fbed75d540346bfad11cc5c1e0678705 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Fri, 9 Jun 2023 16:09:23 +0800 Subject: [PATCH] added warning message for unsupported K quants --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 42bbfba17..1e2c9d767 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1031,7 +1031,7 @@ static void llama_model_load_internal( #if defined(GGML_USE_CLBLAST) if (file_version == LLAMA_FILE_VERSION_GGJT_V3) { if (hparams.ftype >= LLAMA_FTYPE_MOSTLY_Q2_K && hparams.ftype <= LLAMA_FTYPE_MOSTLY_Q6_K) { - printf("\n===\nK-Quants are currently not supported with CLBlast.\nPlease select a q4_0, q4_0, q5_0 or q5_1 format instead."); + printf("\n===\nK-Quants are currently not supported with CLBlast!!!\nPlease select a q4_0, q4_0, q5_0 or q5_1 format instead!\n=====\n"); } } #endif