Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
norm
vllm
Commits
453bafb9
Unverified
Commit
453bafb9
authored
Jul 18, 2023
by
Lily Liu
Committed by
GitHub
Jul 18, 2023
Browse files
Merge pull request #498 from MoeedDar/main
Fixed old name reference for max_seq_len
parents
b4b195b3
328d231c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/core/scheduler.py
vllm/core/scheduler.py
+1
-1
No files found.
vllm/core/scheduler.py
View file @
453bafb9
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment