extension.py 5.61 KB
Newer Older
1
import os
moto's avatar
moto committed
2
3
4
import platform
import subprocess
from pathlib import Path
moto's avatar
moto committed
5
import distutils.sysconfig
moto's avatar
moto committed
6

moto's avatar
moto committed
7
8
from setuptools import Extension
from setuptools.command.build_ext import build_ext
9
import torch
moto's avatar
moto committed
10
11
12

__all__ = [
    'get_ext_modules',
moto's avatar
moto committed
13
    'CMakeBuild',
moto's avatar
moto committed
14
15
16
17
]

_THIS_DIR = Path(__file__).parent.resolve()
_ROOT_DIR = _THIS_DIR.parent.parent.resolve()
moto's avatar
moto committed
18
_TORCHAUDIO_DIR = _ROOT_DIR / 'torchaudio'
moto's avatar
moto committed
19

20

21
22
23
24
def _get_build(var, default=False):
    if var not in os.environ:
        return default

25
    val = os.environ.get(var, '0')
26
27
28
29
30
31
    trues = ['1', 'true', 'TRUE', 'on', 'ON', 'yes', 'YES']
    falses = ['0', 'false', 'FALSE', 'off', 'OFF', 'no', 'NO']
    if val in trues:
        return True
    if val not in falses:
        print(
32
            f'WARNING: Unexpected environment variable value `{var}={val}`. '
33
34
35
36
            f'Expected one of {trues + falses}')
    return False


37
_BUILD_SOX = False if platform.system() == 'Windows' else _get_build("BUILD_SOX", True)
38
_BUILD_KALDI = False if platform.system() == 'Windows' else _get_build("BUILD_KALDI", True)
39
_BUILD_RNNT = _get_build("BUILD_RNNT", True)
40
41
_USE_ROCM = _get_build("USE_ROCM", torch.cuda.is_available() and torch.version.hip is not None)
_USE_CUDA = _get_build("USE_CUDA", torch.cuda.is_available() and torch.version.hip is None)
moto's avatar
moto committed
42
43
_USE_OPENMP = _get_build("USE_OPENMP", True) and \
    'ATen parallel backend: OpenMP' in torch.__config__.parallel_info()
44
_TORCH_CUDA_ARCH_LIST = os.environ.get('TORCH_CUDA_ARCH_LIST', None)
moto's avatar
moto committed
45
46


moto's avatar
moto committed
47
def get_ext_modules():
48
    return [
49
        Extension(name='torchaudio.lib.libtorchaudio', sources=[]),
50
51
        Extension(name='torchaudio._torchaudio', sources=[]),
    ]
moto's avatar
moto committed
52
53


moto's avatar
moto committed
54
55
56
57
58
59
60
# Based off of
# https://github.com/pybind/cmake_example/blob/580c5fd29d4651db99d8874714b07c0c49a53f8a/setup.py
class CMakeBuild(build_ext):
    def run(self):
        try:
            subprocess.check_output(['cmake', '--version'])
        except OSError:
61
            raise RuntimeError("CMake is not available.") from None
moto's avatar
moto committed
62
        super().run()
moto's avatar
moto committed
63
64

    def build_extension(self, ext):
65
66
67
68
69
70
71
72
73
        # Since two library files (libtorchaudio and _torchaudio) need to be
        # recognized by setuptools, we instantiate `Extension` twice. (see `get_ext_modules`)
        # This leads to the situation where this `build_extension` method is called twice.
        # However, the following `cmake` command will build all of them at the same time,
        # so, we do not need to perform `cmake` twice.
        # Therefore we call `cmake` only for `torchaudio._torchaudio`.
        if ext.name != 'torchaudio._torchaudio':
            return

moto's avatar
moto committed
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
        extdir = os.path.abspath(
            os.path.dirname(self.get_ext_fullpath(ext.name)))

        # required for auto-detection of auxiliary "native" libs
        if not extdir.endswith(os.path.sep):
            extdir += os.path.sep

        cfg = "Debug" if self.debug else "Release"

        cmake_args = [
            f"-DCMAKE_BUILD_TYPE={cfg}",
            f"-DCMAKE_PREFIX_PATH={torch.utils.cmake_prefix_path}",
            f"-DCMAKE_INSTALL_PREFIX={extdir}",
            '-DCMAKE_VERBOSE_MAKEFILE=ON',
            f"-DPython_INCLUDE_DIR={distutils.sysconfig.get_python_inc()}",
            f"-DBUILD_SOX:BOOL={'ON' if _BUILD_SOX else 'OFF'}",
90
            f"-DBUILD_KALDI:BOOL={'ON' if _BUILD_KALDI else 'OFF'}",
91
            f"-DBUILD_RNNT:BOOL={'ON' if _BUILD_RNNT else 'OFF'}",
moto's avatar
moto committed
92
            "-DBUILD_TORCHAUDIO_PYTHON_EXTENSION:BOOL=ON",
93
            f"-DUSE_ROCM:BOOL={'ON' if _USE_ROCM else 'OFF'}",
Caroline Chen's avatar
Caroline Chen committed
94
            f"-DUSE_CUDA:BOOL={'ON' if _USE_CUDA else 'OFF'}",
moto's avatar
moto committed
95
            f"-DUSE_OPENMP:BOOL={'ON' if _USE_OPENMP else 'OFF'}",
moto's avatar
moto committed
96
97
98
99
        ]
        build_args = [
            '--target', 'install'
        ]
100
101
102
103
104
105
106
        # Pass CUDA architecture to cmake
        if _TORCH_CUDA_ARCH_LIST is not None:
            # Convert MAJOR.MINOR[+PTX] list to new style one
            # defined at https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html
            _arches = _TORCH_CUDA_ARCH_LIST.replace('.', '').split(";")
            _arches = [arch[:-4] if arch.endswith("+PTX") else f"{arch}-real" for arch in _arches]
            cmake_args += [f"-DCMAKE_CUDA_ARCHITECTURES={';'.join(_arches)}"]
moto's avatar
moto committed
107
108

        # Default to Ninja
109
        if 'CMAKE_GENERATOR' not in os.environ or platform.system() == 'Windows':
moto's avatar
moto committed
110
            cmake_args += ["-GNinja"]
111
112
113
114
115
116
117
118
        if platform.system() == 'Windows':
            import sys
            python_version = sys.version_info
            cmake_args += [
                "-DCMAKE_C_COMPILER=cl",
                "-DCMAKE_CXX_COMPILER=cl",
                f"-DPYTHON_VERSION={python_version.major}.{python_version.minor}",
            ]
moto's avatar
moto committed
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142

        # Set CMAKE_BUILD_PARALLEL_LEVEL to control the parallel build level
        # across all generators.
        if "CMAKE_BUILD_PARALLEL_LEVEL" not in os.environ:
            # self.parallel is a Python 3 only way to set parallel jobs by hand
            # using -j in the build_ext call, not supported by pip or PyPA-build.
            if hasattr(self, "parallel") and self.parallel:
                # CMake 3.12+ only.
                build_args += ["-j{}".format(self.parallel)]

        if not os.path.exists(self.build_temp):
            os.makedirs(self.build_temp)

        subprocess.check_call(
            ["cmake", str(_ROOT_DIR)] + cmake_args, cwd=self.build_temp)
        subprocess.check_call(
            ["cmake", "--build", "."] + build_args, cwd=self.build_temp)

    def get_ext_filename(self, fullname):
        ext_filename = super().get_ext_filename(fullname)
        ext_filename_parts = ext_filename.split('.')
        without_abi = ext_filename_parts[:-2] + ext_filename_parts[-1:]
        ext_filename = '.'.join(without_abi)
        return ext_filename