Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349ea79 commit 09651d0Copy full SHA for 09651d0
src/llama-graph.cpp
@@ -467,7 +467,9 @@ bool llm_graph_result::can_reuse(const llm_graph_params & params) {
467
for (auto & input : inputs) {
468
const bool cur = input->can_reuse(params);
469
470
- LLAMA_LOG_DEBUG(" %s: can_reuse = %d\n", "placeholder", cur);
+ if (debug > 1) {
471
+ LLAMA_LOG_DEBUG("%s: can_reuse = %d\n", "placeholder", cur);
472
+ }
473
474
res = res && cur;
475
}
0 commit comments