pytorch.py 3.14 KB
Newer Older
1
# Copyright (c) 2022-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
4
5
6
7
8
9
10
#
# See LICENSE for license information.

"""PyTorch related extensions."""
import os
from pathlib import Path

import setuptools

11
from .utils import all_files_in_dir, cuda_version, get_cuda_include_dirs, debug_build_enabled
12
13
14
15
from typing import List


def install_requirements() -> List[str]:
16
17
    """Install dependencies for TE/PyTorch extensions."""
    return ["torch>=2.1", "einops", "onnxscript", "onnx", "packaging", "pydantic", "nvdlfw-inspect"]
18
19
20


def test_requirements() -> List[str]:
21
22
23
24
25
26
27
28
29
    """Test dependencies for TE/PyTorch extensions."""
    return [
        "numpy",
        "torchvision",
        "transformers",
        "torchao==0.13",
        "onnxruntime",
        "onnxruntime_extensions",
    ]
30
31
32
33
34
35
36
37
38
39


def setup_pytorch_extension(
    csrc_source_files,
    csrc_header_files,
    common_header_files,
) -> setuptools.Extension:
    """Setup CUDA extension for PyTorch support"""

    # Source files
40
    sources = all_files_in_dir(Path(csrc_source_files), name_extension="cpp")
41
42

    # Header files
43
44
45
46
47
48
49
50
51
    include_dirs = get_cuda_include_dirs()
    include_dirs.extend(
        [
            common_header_files,
            common_header_files / "common",
            common_header_files / "common" / "include",
            csrc_header_files,
        ]
    )
52

53
    # Compiler flags
54
55
56
57
58
59
    cxx_flags = ["-O3", "-fvisibility=hidden"]
    if debug_build_enabled():
        cxx_flags.append("-g")
        cxx_flags.append("-UNDEBUG")
    else:
        cxx_flags.append("-g0")
60

61
62
63
64
    # Version-dependent CUDA options
    try:
        version = cuda_version()
    except FileNotFoundError:
65
        print("Could not determine CUDA version")
66
    else:
67
68
        if version < (12, 0):
            raise RuntimeError("Transformer Engine requires CUDA 12.0 or newer")
69

70
    if bool(int(os.getenv("NVTE_UB_WITH_MPI", "0"))):
71
72
        assert (
            os.getenv("MPI_HOME") is not None
73
74
75
        ), "MPI_HOME=/path/to/mpi must be set when compiling with NVTE_UB_WITH_MPI=1!"
        mpi_path = Path(os.getenv("MPI_HOME"))
        include_dirs.append(mpi_path / "include")
76
        cxx_flags.append("-DNVTE_UB_WITH_MPI")
77

78
79
80
81
82
83
84
85
86
87
88
89
    library_dirs = []
    libraries = []
    if bool(int(os.getenv("NVTE_ENABLE_NVSHMEM", 0))):
        assert (
            os.getenv("NVSHMEM_HOME") is not None
        ), "NVSHMEM_HOME must be set when compiling with NVTE_ENABLE_NVSHMEM=1"
        nvshmem_home = Path(os.getenv("NVSHMEM_HOME"))
        include_dirs.append(nvshmem_home / "include")
        library_dirs.append(nvshmem_home / "lib")
        libraries.append("nvshmem_host")
        cxx_flags.append("-DNVTE_ENABLE_NVSHMEM")

90
91
92
    # Construct PyTorch CUDA extension
    sources = [str(path) for path in sources]
    include_dirs = [str(path) for path in include_dirs]
93
    from torch.utils.cpp_extension import CppExtension
94

95
    return CppExtension(
96
        name="transformer_engine_torch",
97
98
        sources=[str(src) for src in sources],
        include_dirs=[str(inc) for inc in include_dirs],
99
        extra_compile_args={"cxx": cxx_flags},
100
101
        libraries=[str(lib) for lib in libraries],
        library_dirs=[str(lib_dir) for lib_dir in library_dirs],
102
    )