Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolatendresse committed Dec 16, 2024
1 parent 01641a4 commit 74b4d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inference/incr_decoding/incr_decoding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void parse_input_args(char **argv,
max_tokens_per_batch = std::stoi(argv[++i]);
continue;
}
if (!strcmp(argv[i], "--max-sequence-length")) { // total including prompt
if (!strcmp(argv[i], "--max-sequence-length")) {
max_sequence_length = std::stoi(argv[++i]);
continue;
}
Expand Down

0 comments on commit 74b4d52

Please sign in to comment.