File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 45
45
VLLM_USE_RAY_SPMD_WORKER : bool = False
46
46
VLLM_USE_RAY_COMPILED_DAG : bool = False
47
47
VLLM_USE_RAY_COMPILED_DAG_NCCL_CHANNEL : bool = True
48
- VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM : bool = True
48
+ VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM : bool = False
49
49
VLLM_WORKER_MULTIPROC_METHOD : str = "fork"
50
50
VLLM_ASSETS_CACHE : str = os .path .join (VLLM_CACHE_ROOT , "assets" )
51
51
VLLM_IMAGE_FETCH_TIMEOUT : int = 5
@@ -340,11 +340,11 @@ def get_default_config_root():
340
340
lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG_NCCL_CHANNEL" , "1" ))
341
341
),
342
342
343
- # If the env var is set, it enables GPU communication overlap in
344
- # Ray's compiled DAG. This flag is ignored if
343
+ # If the env var is set, it enables GPU communication overlap
344
+ # (experimental feature) in Ray's compiled DAG. This flag is ignored if
345
345
# VLLM_USE_RAY_COMPILED_DAG is not set.
346
346
"VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM" :
347
- lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM" , "1 " ))
347
+ lambda : bool (int (os .getenv ("VLLM_USE_RAY_COMPILED_DAG_OVERLAP_COMM" , "0 " ))
348
348
),
349
349
350
350
# Use dedicated multiprocess context for workers.
You can’t perform that action at this time.
0 commit comments