Skip to content

Commit

Permalink
llama-cli : remove duplicated log message (ggerganov#9275)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbcsm authored and dsx1986 committed Oct 29, 2024
1 parent c132709 commit 5b91060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ int main(int argc, char ** argv) {
}

LOGLN(
"recalculate the cached logits (check): embd_inp.empty() %s, n_matching_session_tokens %zu, embd_inp.size() %zu, session_tokens.size() %zu, embd_inp.size() %zu",
log_tostr(embd_inp.empty()), n_matching_session_tokens, embd_inp.size(), session_tokens.size(), embd_inp.size());
"recalculate the cached logits (check): embd_inp.empty() %s, n_matching_session_tokens %zu, embd_inp.size() %zu, session_tokens.size() %zu",
log_tostr(embd_inp.empty()), n_matching_session_tokens, embd_inp.size(), session_tokens.size());

// if we will use the cache for the full prompt without reaching the end of the cache, force
// reevaluation of the last token to recalculate the cached logits
Expand Down

0 comments on commit 5b91060

Please sign in to comment.