Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,14 @@ def setup_requirements() -> Tuple[List[str], List[str]]:
]
test_reqs: List[str] = ["pytest>=8.2.1"]

# Optional FlyDSL dependency for ROCm PyTorch builds.
if (
rocm_build()
and "pytorch" in frameworks
and bool(int(os.getenv("NVTE_USE_FLYDSL", "0")))
):
install_reqs.extend(["flydsl"])

# Framework-specific requirements
if not bool(int(os.getenv("NVTE_RELEASE_BUILD", "0"))):
if "pytorch" in frameworks:
Expand Down
Loading
Loading