mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-05-17 02:42:17 +08:00
[Core] Fix ray forward_dag error mssg (#6792)
This commit is contained in:
parent
b7215de2c5
commit
1adddb14bf
@ -29,6 +29,7 @@ class RayGPUExecutor(DistributedGPUExecutor):
|
|||||||
uses_ray: bool = True
|
uses_ray: bool = True
|
||||||
|
|
||||||
def _init_executor(self) -> None:
|
def _init_executor(self) -> None:
|
||||||
|
self.forward_dag: Optional["ray.dag.CompiledDAG"] = None
|
||||||
# If the env var is set, it uses the Ray's compiled DAG API
|
# If the env var is set, it uses the Ray's compiled DAG API
|
||||||
# which optimizes the control plane overhead.
|
# which optimizes the control plane overhead.
|
||||||
# Run vLLM with VLLM_USE_RAY_COMPILED_DAG=1 to enable it.
|
# Run vLLM with VLLM_USE_RAY_COMPILED_DAG=1 to enable it.
|
||||||
@ -60,8 +61,6 @@ class RayGPUExecutor(DistributedGPUExecutor):
|
|||||||
# Create the parallel GPU workers.
|
# Create the parallel GPU workers.
|
||||||
self._init_workers_ray(placement_group)
|
self._init_workers_ray(placement_group)
|
||||||
|
|
||||||
self.forward_dag: Optional["ray.dag.CompiledDAG"] = None
|
|
||||||
|
|
||||||
def _configure_ray_workers_use_nsight(self,
|
def _configure_ray_workers_use_nsight(self,
|
||||||
ray_remote_kwargs) -> Dict[str, Any]:
|
ray_remote_kwargs) -> Dict[str, Any]:
|
||||||
# If nsight profiling is enabled, we need to set the profiling
|
# If nsight profiling is enabled, we need to set the profiling
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user