summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Gäßler <johannesg@5d6.de>2023-12-21 17:34:17 +0100
committerGitHub <noreply@github.com>2023-12-21 18:34:17 +0200
commitd3223afdad0ed2821a8ddf739c291cd410c92a11 (patch)
tree0f81c97132969051de76a3a71d0d5f34ad4f5e42
parent1d7a1912cea2227f9a1a449758ed622c560542f9 (diff)
llama : disable per-tensor info prints on model load (#4562)
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
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) {