@@ -371,21 +371,22 @@ def maybe_convert_int(value: Optional[str]) -> Optional[int]:
371371 "VLLM_USE_RAY_SPMD_WORKER" :
372372 lambda : bool (int (os .getenv ("VLLM_USE_RAY_SPMD_WORKER" , "0" ))),
373373
374- # If the env var is set, it uses the Ray's compiled DAG API
375- # which optimizes the control plane overhead.
374+ # If the env var is set, it uses the Ray's Compiled Graph
375+ # (previously known as ADAG) API which optimizes the
376+ # control plane overhead.
376377 # Run vLLM with VLLM_USE_RAY_COMPILED_DAG=1 to enable it.
377378 "VLLM_USE_RAY_COMPILED_DAG" :
378379 lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG" , "0" ))),
379380
380381 # If the env var is set, it uses NCCL for communication in
381- # Ray's compiled DAG . This flag is ignored if
382+ # Ray's Compiled Graph . This flag is ignored if
382383 # VLLM_USE_RAY_COMPILED_DAG is not set.
383384 "VLLM_USE_RAY_COMPILED_DAG_NCCL_CHANNEL" :
384385 lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG_NCCL_CHANNEL" , "1" ))
385386 ),
386387
387388 # If the env var is set, it enables GPU communication overlap
388- # (experimental feature) in Ray's compiled DAG . This flag is ignored if
389+ # (experimental feature) in Ray's Compiled Graph . This flag is ignored if
389390 # VLLM_USE_RAY_COMPILED_DAG is not set.
390391 "VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM" :
391392 lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM" , "0" ))
0 commit comments