Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
c5c06209
Unverified
Commit
c5c06209
authored
Jan 20, 2025
by
Yuan Tang
Committed by
GitHub
Jan 20, 2025
Browse files
[DOC] Fix typo in docstring and assert message (#12194)
Signed-off-by:
Yuan Tang
<
terrytangyuan@gmail.com
>
parent
3ea7b945
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/engine/output_processor/single_step.py
vllm/engine/output_processor/single_step.py
+2
-2
No files found.
vllm/engine/output_processor/single_step.py
View file @
c5c06209
...
...
@@ -102,9 +102,9 @@ class SingleStepOutputProcessor(SequenceGroupOutputProcessor):
Args:
seq_group: the output is associated with this :class:`SequenceGroup`
output: the :class:`SequenceGroupOutput` for a single scheduler step
output
s
: the :class:`SequenceGroupOutput` for a single scheduler step
"""
assert
len
(
outputs
)
==
1
,
(
"Single step should only ha
s
1 output."
)
assert
len
(
outputs
)
==
1
,
"Single step should only ha
ve
1 output."
output
=
outputs
[
0
]
assert
isinstance
(
output
,
CompletionSequenceGroupOutput
)
single_step_process_prompt_logprob
(
self
,
seq_group
,
output
)
...
...
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