From: Johannes Gäßler Date: Thu, 21 Dec 2023 16:34:17 +0000 (+0100) Subject: llama : disable per-tensor info prints on model load (#4562) X-Git-Tag: upstream/0.0.4488~2822 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=d3223afdad0ed2821a8ddf739c291cd410c92a11;p=pkg%2Fggml%2Fsources%2Fllama.cpp llama : disable per-tensor info prints on model load (#4562) --- diff --git a/llama.cpp b/llama.cpp index edd2910b..90d860eb 100644 --- a/llama.cpp +++ b/llama.cpp @@ -2083,7 +2083,7 @@ struct llama_model_loader { type_max = meta->type; } - LLAMA_LOG_INFO("%s: - tensor %4d: %32s %-8s [ %s ]\n", __func__, i, name, ggml_type_name(meta->type), llama_format_tensor_shape(meta).c_str()); + // LLAMA_LOG_INFO("%s: - tensor %4d: %32s %-8s [ %s ]\n", __func__, i, name, ggml_type_name(meta->type), llama_format_tensor_shape(meta).c_str()); } switch (type_max) {