setup.py 2.06 KB
Newer Older
1
# Copyright (c) 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# See LICENSE for license information.

"""Installation script for TE jax extensions."""

# pylint: disable=wrong-import-position,wrong-import-order

import sys
import os
import shutil
from pathlib import Path

import setuptools

try:
    import jax  # pylint: disable=unused-import
except ImportError as e:
    raise RuntimeError("This package needs Jax to build.") from e


current_file_path = Path(__file__).parent.resolve()
build_tools_dir = current_file_path.parent.parent / "build_tools"
if bool(int(os.getenv("NVTE_RELEASE_BUILD", "0"))) or os.path.isdir(build_tools_dir):
25
26
27
28
    build_tools_copy = current_file_path / "build_tools"
    if build_tools_copy.exists():
        shutil.rmtree(build_tools_copy)
    shutil.copytree(build_tools_dir, build_tools_copy)
29
30
31


from build_tools.build_ext import get_build_ext
32
from build_tools.utils import copy_common_headers, install_and_import
33
34
35
from build_tools.te_version import te_version
from build_tools.jax import setup_jax_extension

36
install_and_import("pybind11")
37
38
from pybind11.setup_helpers import build_ext as BuildExtension

39
os.environ["NVTE_PROJECT_BUILDING"] = "1"
40
CMakeBuildExtension = get_build_ext(BuildExtension, True)
41
42
43
44
45


if __name__ == "__main__":
    # Extensions
    common_headers_dir = "common_headers"
46
    copy_common_headers(current_file_path.parent, str(current_file_path / common_headers_dir))
47
48
    ext_modules = [
        setup_jax_extension(
49
50
51
            "csrc", current_file_path / "csrc", current_file_path / common_headers_dir
        )
    ]
52
53
54
55
56
57
58
59
60
61
62
63
64

    # Configure package
    setuptools.setup(
        name="transformer_engine_jax",
        version=te_version(),
        description="Transformer acceleration library - Jax Lib",
        ext_modules=ext_modules,
        cmdclass={"build_ext": CMakeBuildExtension},
        install_requires=["jax", "flax>=0.7.1"],
        tests_require=["numpy", "praxis"],
    )
    if any(x in sys.argv for x in (".", "sdist", "bdist_wheel")):
        shutil.rmtree(common_headers_dir)
65
        shutil.rmtree("build_tools")