diff options
author | Johannes Gäßler <johannesg@5d6.de> | 2023-12-21 17:34:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 18:34:17 +0200 |
commit | d3223afdad0ed2821a8ddf739c291cd410c92a11 (patch) | |
tree | 0f81c97132969051de76a3a71d0d5f34ad4f5e42 | |
parent | 1d7a1912cea2227f9a1a449758ed622c560542f9 (diff) |
llama : disable per-tensor info prints on model load (#4562)
-rw-r--r-- | llama.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |