Skip to content

Commit

Permalink
white space
Browse files Browse the repository at this point in the history
  • Loading branch information
VJHack committed Sep 14, 2024
1 parent 0680710 commit e244300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ int main(int argc, char ** argv) {
// - take half of the last (n_ctx - n_keep) tokens and recompute the logits in batches

if (n_past + (int) embd.size() >= n_ctx) {
if(!params.ctx_shift){
if (!params.ctx_shift){
LOG_TEE("\n\n%s: context full and context shift is disabled => stopping\n", __func__);
break;
} else {
Expand Down

0 comments on commit e244300

Please sign in to comment.