Skip to content

Commit 35514b6

Browse files
authored
[XPU] XCCL support enabled in torch 2.8.0.dev nightly builds (#20705)
Signed-off-by: ratnampa <ratnam.parikh@intel.com>
1 parent e2de455 commit 35514b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/utils/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2085,10 +2085,10 @@ def supports_dynamo() -> bool:
20852085
return base_torch_version >= Version("2.4.0")
20862086

20872087

2088-
# Supports xccl with PyTorch versions >= 2.8.0 for XPU platform
2088+
# Supports xccl with PyTorch versions >= 2.8.0.dev for XPU platform
20892089
def supports_xccl() -> bool:
20902090
return is_torch_equal_or_newer(
2091-
"2.8.0") and torch.distributed.is_xccl_available()
2091+
"2.8.0.dev") and torch.distributed.is_xccl_available()
20922092

20932093

20942094
# Some backends use pytorch version < 2.4.0 which doesn't

0 commit comments

Comments
 (0)