-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
279 lines (228 loc) · 8.14 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env python3
#
# To install k2, run
#
# python3 setup.py install
#
# To test that k2 is installed successfully, run
#
# python3 -m k2.version
#
# To uninstall k2, run
#
# pip uninstall k2
#
# To build a wheel package, run
#
# python3 setup.py bdist_wheel
#
# It generates a file in the dist/ directory.
#
# An example file looks like
#
# ./dist/k2-0.3.4.dev20210512+cuda10.1.torch1.7.1-cp38-cp38-linux_x86_64.whl
#
# To build a wheel that can be uploaded to PyPI, run
#
# K2_IS_FOR_PYPI=1 python3 setup.py bdist_wheel --python-tag=py38
# twine upload ./dist/k2-0.3.4.dev20210512-py38-none-any.whl
#
# To build k2 without CUDA support, run
#
# export K2_CMAKE_ARGS="-DK2_WITH_CUDA=OFF"
# python3 setup.py install
import glob
import os
import shutil
import sys
import urllib.request
from pathlib import Path
from subprocess import DEVNULL, check_call
import setuptools
from setuptools.command.build_ext import build_ext
import get_version
get_package_version = get_version.get_package_version
get_pytorch_version = get_version.get_pytorch_version
is_for_pypi = get_version.is_for_pypi
is_macos = get_version.is_macos
is_windows = get_version.is_windows
if sys.version_info < (3,):
print("Python 2 has reached end-of-life and is no longer supported by k2.")
sys.exit(-1)
if sys.version_info < (3, 6):
print(
"Python 3.5 has reached end-of-life on September 13th, 2020 "
"and is no longer supported by k2."
)
sys.exit(-1)
def fix_pytorch_1_12():
print("Fix https://github.com/pytorch/pytorch/issues/88290")
import torch
torch_dir = Path(torch.__file__).parent
print(torch_dir)
mobile_dir = torch_dir / "include" / "torch" / "csrc" / "jit" / "mobile"
mobile_dir.mkdir(exist_ok=True)
files = (
"code.h",
"debug_info.h",
"function.h",
"method.h",
"module.h",
)
base_url = "https://raw.githubusercontent.com/pytorch/pytorch/v1.12.1/torch/csrc/jit/mobile/" # noqa
for f in files:
path = mobile_dir / f
if path.is_file():
print(f"skipping {path}")
continue
url = base_url + f
print(f"Downloading {url} to {path}")
urllib.request.urlretrieve(url, path)
if "1.12" in get_pytorch_version():
fix_pytorch_1_12()
cmake_path = shutil.which("cmake")
if cmake_path is None:
raise Exception("Please install CMake before you proceed.")
ret = check_call(["cmake", "--version"], stdout=DEVNULL, stderr=DEVNULL)
if ret != 0:
raise Exception("Failed to get CMake version")
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
if is_for_pypi() and not is_macos():
# In this case, the generated wheel has a name in the form
# k2-xxx-pyxx-none-any.whl
self.root_is_pure = True
else:
# The generated wheel has a name ending with
# -linux_x86_64.whl
self.root_is_pure = False
except ImportError:
bdist_wheel = None
def cmake_extension(name, *args, **kwargs) -> setuptools.Extension:
kwargs["language"] = "c++"
sources = []
return setuptools.Extension(name, sources, *args, **kwargs)
class BuildExtension(build_ext):
def build_extension(self, ext: setuptools.extension.Extension):
print(f"cmake_path: {cmake_path}")
# build/temp.linux-x86_64-3.8
os.makedirs(self.build_temp, exist_ok=True)
# build/lib.linux-x86_64-3.8
os.makedirs(self.build_lib, exist_ok=True)
k2_dir = os.path.dirname(os.path.abspath(__file__))
cmake_args = os.environ.get("K2_CMAKE_ARGS", "")
make_args = os.environ.get("K2_MAKE_ARGS", "")
system_make_args = os.environ.get("MAKEFLAGS", "")
extra_cmake_args = " -DK2_ENABLE_BENCHMARK=OFF "
extra_cmake_args += " -DK2_ENABLE_TESTS=OFF "
extra_cmake_args += (
f" -DCMAKE_INSTALL_PREFIX={Path(self.build_lib).resolve()}/k2 " # noqa
)
major, minor = get_pytorch_version().split(".")[:2]
major = int(major)
minor = int(minor)
if major > 2 or (major == 2 and minor >= 1):
extra_cmake_args += f" -DCMAKE_CXX_STANDARD=17 "
if cmake_args == "":
cmake_args = "-DCMAKE_BUILD_TYPE=Release"
if (
make_args == ""
and system_make_args == ""
and os.environ.get("K2_IS_GITHUB_ACTIONS", None) is None
):
print("For fast compilation, run:")
print('export K2_MAKE_ARGS="-j"; python setup.py install')
make_args = " -j4 "
print("Setting make_args to '-j4'")
if is_macos():
if not "K2_WITH_CUDA=OFF" in cmake_args:
print("Disable CUDA for macOS")
cmake_args += " -DK2_WITH_CUDA=OFF"
if "PYTHON_EXECUTABLE" not in cmake_args:
print(f"Setting PYTHON_EXECUTABLE to {sys.executable}")
cmake_args += f" -DPYTHON_EXECUTABLE={sys.executable}"
cmake_args += extra_cmake_args
if is_windows():
build_cmd = f"""
cmake {cmake_args} -B {self.build_temp} -S {k2_dir}
cmake --build {self.build_temp} --target install --config Release -- -m
"""
print(f"build command is:\n{build_cmd}")
ret = os.system(f"cmake {cmake_args} -B {self.build_temp} -S {k2_dir}")
if ret != 0:
raise Exception("Failed to build k2")
ret = os.system(
f"cmake --build {self.build_temp} --target install --config Release -- -m"
)
if ret != 0:
raise Exception("Failed to build k2")
else:
build_cmd = f"""
cd {self.build_temp}
cmake {cmake_args} {k2_dir}
cat k2/csrc/version.h
make {make_args} install
"""
print(f"build command is:\n{build_cmd}")
ret = os.system(build_cmd)
if ret != 0:
raise Exception("Failed to build k2")
def get_long_description():
with open("README.md", "r") as f:
long_description = f.read()
return long_description
def get_short_description():
return "FSA/FST algorithms, intended to (eventually) be interoperable with PyTorch and similar"
with open("k2/python/k2/__init__.py", "a") as f:
f.write(f"__dev_version__ = '{get_package_version()}'\n")
dev_requirements = [
"clang-format==9.0.0",
"flake8==3.8.3",
"yapf==0.27.0",
]
install_requires = [
f"torch=={get_pytorch_version()}",
"graphviz",
"typing_extensions; python_version < '3.8'",
]
setuptools.setup(
python_requires=">=3.6",
name="k2",
version=get_package_version(),
author="Daniel Povey",
author_email="[email protected]",
keywords="k2, FSA, FST",
description=get_short_description(),
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/k2-fsa/k2",
package_dir={
"k2": "k2/python/k2",
"k2.ragged": "k2/python/k2/ragged",
"k2.sparse": "k2/python/k2/sparse",
"k2.version": "k2/python/k2/version",
},
packages=["k2", "k2.ragged", "k2.sparse", "k2.version"],
install_requires=install_requires,
extras_require={"dev": dev_requirements},
ext_modules=[cmake_extension("_k2")],
cmdclass={"build_ext": BuildExtension, "bdist_wheel": bdist_wheel},
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)
# remove the line __dev_version__ from k2/python/k2/__init__.py
with open("k2/python/k2/__init__.py", "r") as f:
lines = f.readlines()
with open("k2/python/k2/__init__.py", "w") as f:
for line in lines:
if "__dev_version__" not in line:
f.write(line)