We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2de455 commit 35514b6Copy full SHA for 35514b6
vllm/utils/__init__.py
@@ -2085,10 +2085,10 @@ def supports_dynamo() -> bool:
2085
return base_torch_version >= Version("2.4.0")
2086
2087
2088
-# Supports xccl with PyTorch versions >= 2.8.0 for XPU platform
+# Supports xccl with PyTorch versions >= 2.8.0.dev for XPU platform
2089
def supports_xccl() -> bool:
2090
return is_torch_equal_or_newer(
2091
- "2.8.0") and torch.distributed.is_xccl_available()
+ "2.8.0.dev") and torch.distributed.is_xccl_available()
2092
2093
2094
# Some backends use pytorch version < 2.4.0 which doesn't
0 commit comments