Unverified Commit 453bafb9 authored by Lily Liu's avatar Lily Liu Committed by GitHub
Browse files

Merge pull request #498 from MoeedDar/main

Fixed old name reference for max_seq_len
parents b4b195b3 328d231c
...@@ -196,7 +196,7 @@ class Scheduler: ...@@ -196,7 +196,7 @@ class Scheduler:
logger.warning( logger.warning(
f"Input prompt ({num_prompt_tokens} tokens) is too long" f"Input prompt ({num_prompt_tokens} tokens) is too long"
" and exceeds limit of " " and exceeds limit of "
f"{self.scheduler_config.max_seq_len}") f"{self.scheduler_config.max_model_len}")
for seq in seq_group.get_seqs(): for seq in seq_group.get_seqs():
seq.status = SequenceStatus.FINISHED_IGNORED seq.status = SequenceStatus.FINISHED_IGNORED
ignored_seq_groups.append(seq_group) ignored_seq_groups.append(seq_group)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment