-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
211 lines (176 loc) · 5.82 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import argparse
import distutils.command.clean
import glob
import logging
import os
import shutil
import subprocess
import sys
from datetime import date
from pathlib import Path
from typing import List
from setuptools import find_packages, setup
from torch.utils.cpp_extension import BuildExtension, CppExtension
ROOT_DIR = Path(__file__).parent.resolve()
try:
sha = (
subprocess.check_output(["git", "rev-parse", "HEAD"], cwd=ROOT_DIR)
.decode("ascii")
.strip()
)
except Exception:
sha = "Unknown"
package_name = "tensordict"
def parse_args(argv: List[str]) -> argparse.Namespace:
parser = argparse.ArgumentParser(description="tensordict setup")
parser.add_argument(
"--package_name",
type=str,
default="tensordict",
help="the name of this output wheel",
)
return parser.parse_known_args(argv)
def get_version():
version = (ROOT_DIR / "version.txt").read_text().strip()
if os.getenv("TENSORDICT_BUILD_VERSION"):
version = os.getenv("TENSORDICT_BUILD_VERSION")
elif sha != "Unknown":
version += "+" + sha[:7]
return version
def get_nightly_version():
return f"{date.today():%Y.%m.%d}"
def write_version_file(version):
version_path = ROOT_DIR / "tensordict" / "version.py"
with version_path.open("w") as f:
f.write(f"__version__ = '{version}'\n")
f.write(f"git_version = {repr(sha)}\n")
def _get_pytorch_version(is_nightly, is_local):
# if "PYTORCH_VERSION" in os.environ:
# return f"torch=={os.environ['PYTORCH_VERSION']}"
if is_nightly:
return "torch>=2.6.0.dev"
if is_local:
return "torch"
return "torch>=2.5.0"
def _get_packages():
exclude = [
"build*",
"test*",
"third_party*",
"tools*",
]
return find_packages(exclude=exclude)
class clean(distutils.command.clean.clean):
def run(self):
# Run default behavior first
distutils.command.clean.clean.run(self)
# Remove tensordict extension
for path in (ROOT_DIR / "tensordict").glob("**/*.so"):
logging.info(f"removing '{path}'")
path.unlink()
# Remove build directory
build_dirs = [ROOT_DIR / "build"]
for path in build_dirs:
if path.exists():
logging.info(f"removing '{path}' (and everything under it)")
shutil.rmtree(str(path), ignore_errors=True)
def get_extensions():
extension = CppExtension
extra_link_args = []
extra_compile_args = {
"cxx": [
"-O3",
"-std=c++17",
"-fdiagnostics-color=always",
]
}
debug_mode = os.getenv("DEBUG", "0") == "1"
if debug_mode:
logging.info("Compiling in debug mode")
extra_compile_args = {
"cxx": [
"-O0",
"-fno-inline",
"-g",
"-std=c++17",
"-fdiagnostics-color=always",
]
}
extra_link_args = ["-O0", "-g"]
this_dir = os.path.dirname(os.path.abspath(__file__))
extensions_dir = os.path.join(this_dir, "tensordict", "csrc")
extension_sources = {
os.path.join(extensions_dir, p)
for p in glob.glob(os.path.join(extensions_dir, "*.cpp"))
}
sources = list(extension_sources)
ext_modules = [
extension(
"tensordict._C",
sources,
include_dirs=[this_dir],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)
]
return ext_modules
def _main(argv):
args, unknown = parse_args(argv)
name = args.package_name
is_nightly = "nightly" in name
version = get_nightly_version() if is_nightly else get_version()
write_version_file(version)
logging.info(f"Building wheel {package_name}-{version}")
BUILD_VERSION = os.getenv("TENSORDICT_BUILD_VERSION")
logging.info(f"TENSORDICT_BUILD_VERSION is {BUILD_VERSION}")
local_build = BUILD_VERSION is None
pytorch_package_dep = _get_pytorch_version(is_nightly, local_build)
logging.info("-- PyTorch dependency:", pytorch_package_dep)
long_description = (ROOT_DIR / "README.md").read_text(encoding="utf8")
sys.argv = [sys.argv[0], *unknown]
setup(
# Metadata
name=name,
version=version,
author="tensordict contributors",
author_email="[email protected]",
url="https://github.com/pytorch/tensordict",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
# Package info
packages=find_packages(
exclude=("test", "tutorials", "packaging", "gallery", "docs")
),
ext_modules=get_extensions(),
cmdclass={
"build_ext": BuildExtension.with_options(no_python_abi_suffix=True),
"clean": clean,
},
install_requires=[pytorch_package_dep, "numpy", "cloudpickle", "orjson"],
extras_require={
"tests": [
"pytest",
"pyyaml",
"pytest-instafail",
"pytest-rerunfailures",
"pytest-benchmark",
],
"checkpointing": ["torchsnapshot-nightly"],
"h5": ["h5py>=3.8"],
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
],
)
if __name__ == "__main__":
_main(sys.argv[1:])