pytorch.py 2.65 KB
Newer Older
1
# Copyright (c) 2022-2025, 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
12
13
14
15
16
17
18
19
20
21
22
23
24


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

    # Source files
    csrc_source_files = Path(csrc_source_files)
    extensions_dir = csrc_source_files / "extensions"
    sources = [
25
        csrc_source_files / "common.cpp",
26
27
28
    ] + all_files_in_dir(extensions_dir)

    # Header files
29
30
31
32
33
34
35
36
37
    include_dirs = get_cuda_include_dirs()
    include_dirs.extend(
        [
            common_header_files,
            common_header_files / "common",
            common_header_files / "common" / "include",
            csrc_header_files,
        ]
    )
38

39
    # Compiler flags
40
41
42
43
    cxx_flags = [
        "-O3",
        "-fvisibility=hidden",
    ]
44

45
46
47
48
    # Version-dependent CUDA options
    try:
        version = cuda_version()
    except FileNotFoundError:
49
        print("Could not determine CUDA version")
50
    else:
51
52
        if version < (12, 0):
            raise RuntimeError("Transformer Engine requires CUDA 12.0 or newer")
53

54
    if bool(int(os.getenv("NVTE_UB_WITH_MPI", "0"))):
55
56
        assert (
            os.getenv("MPI_HOME") is not None
57
58
59
        ), "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")
60
        cxx_flags.append("-DNVTE_UB_WITH_MPI")
61

62
63
64
65
66
67
68
69
70
71
72
73
    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")

74
75
76
    # Construct PyTorch CUDA extension
    sources = [str(path) for path in sources]
    include_dirs = [str(path) for path in include_dirs]
77
    from torch.utils.cpp_extension import CppExtension
78

79
    return CppExtension(
80
        name="transformer_engine_torch",
81
82
        sources=[str(src) for src in sources],
        include_dirs=[str(inc) for inc in include_dirs],
83
        extra_compile_args={"cxx": cxx_flags},
84
85
        libraries=[str(lib) for lib in libraries],
        library_dirs=[str(lib_dir) for lib_dir in library_dirs],
86
    )