File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ def _init_executor(self) -> None:
5050 self .is_failed = False
5151 self .shutdown_event = threading .Event ()
5252 self .failure_callback : Optional [FailureCallback ] = None
53+ self .io_thread_pool : Optional [ThreadPoolExecutor ] = None
5354
5455 self .world_size = self .parallel_config .world_size
5556 tensor_parallel_size = self .parallel_config .tensor_parallel_size
@@ -107,7 +108,6 @@ def _init_executor(self) -> None:
107108
108109 # For pipeline parallel, we use a thread pool for asynchronous
109110 # execute_model.
110- self .io_thread_pool : Optional [ThreadPoolExecutor ] = None
111111 if self .max_concurrent_batches > 1 :
112112 # Note: must use only 1 IO thread to keep dequeue sequence
113113 # from the response queue
You can’t perform that action at this time.
0 commit comments