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 bc16fcd commit 63886d1Copy full SHA for 63886d1
vllm/platforms/cuda.py
@@ -566,11 +566,8 @@ def is_fully_connected(cls, physical_device_ids: list[int]) -> bool:
566
query if the set of gpus are fully connected by nvlink (1 hop)
567
"""
568
569
- # Check if is_fully_connected should be forced via environment variable
570
- if os.getenv("VLLM_FORCE_IS_FULLY_CONNECTED", "0") == "1":
571
- logger.warning(
572
- "Forcing is_fully_connected to True via VLLM_FORCE_IS_FULLY_CONNECTED environment variable."
573
- )
+ if os.getenv("VLLM_SKIP_NVLINK_CHECK", "0") == "1":
+ logger.info("Skipping NVLink check.")
574
return True
575
576
handles = [
0 commit comments