Unverified Commit a1404f06 authored by Vineeth's avatar Vineeth Committed by GitHub
Browse files

fix: sp, req order (#3303)

parent 8616a284
...@@ -419,7 +419,7 @@ class VLLM(TemplateLM): ...@@ -419,7 +419,7 @@ class VLLM(TemplateLM):
procs, resq = [], Queue() procs, resq = [], Queue()
# We use Process as it is non-daemonic # We use Process as it is non-daemonic
try: try:
for rank, (sp, req) in enumerate(zip(requests, sampling_params)): for rank, (req, sp) in enumerate(zip(requests, sampling_params)):
proc = Process( proc = Process(
target=_vllm_mp_worker, target=_vllm_mp_worker,
args=( args=(
......
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