diff --git a/src/llama-model-loader.cpp b/src/llama-model-loader.cpp index 5a6348893..dc8ee754c 100644 --- a/src/llama-model-loader.cpp +++ b/src/llama-model-loader.cpp @@ -1228,7 +1228,7 @@ struct ggml_tensor * llama_model_loader::create_tensor( } last_used_ctx = ctx; //this caches the last ctx which should match the buft we want for this layer. kobo forgive me. - LLAMA_LOG_DEBUG("%s: loading tensor %s\n", __func__, tn.str().c_str()); + // LLAMA_LOG_DEBUG("%s: loading tensor %s\n", __func__, tn.str().c_str()); const struct ggml_tensor * cur = check_tensor_dims(tn.str(), ne, !(flags & TENSOR_NOT_REQUIRED)); if (cur == NULL) { diff --git a/src/llama-vocab.cpp b/src/llama-vocab.cpp index 65b801734..cd89f65fc 100644 --- a/src/llama-vocab.cpp +++ b/src/llama-vocab.cpp @@ -2739,8 +2739,8 @@ void llama_vocab::impl::load(llama_model_loader & ml, const LLM_KV & kv) { if (attr & LLAMA_TOKEN_ATTR_CONTROL && !(attr & LLAMA_TOKEN_ATTR_UNUSED)) { // token is control, but not marked as EOG -> print a debug log if (special_eog_ids.count(t.second) == 0) { - LLAMA_LOG_DEBUG("%s: control token: %6d '%s' is not marked as EOG\n", - __func__, t.second, t.first.c_str()); + // LLAMA_LOG_DEBUG("%s: control token: %6d '%s' is not marked as EOG\n", + // __func__, t.second, t.first.c_str()); } } }