-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathsetup.py
More file actions
347 lines (282 loc) · 11.7 KB
/
setup.py
File metadata and controls
347 lines (282 loc) · 11.7 KB
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# Copyright (c) ONNX Project Contributors
#
# SPDX-License-Identifier: Apache-2.0
import glob
import multiprocessing
import os
import platform
import re
import shlex
import shutil
import subprocess
import sys
from contextlib import contextmanager
from distutils import log, sysconfig
from textwrap import dedent
from typing import ClassVar, NamedTuple
import setuptools
import setuptools.command.build_ext
import setuptools.command.build_py
import setuptools.command.develop
TOP_DIR = os.path.realpath(os.path.dirname(__file__))
SRC_DIR = os.path.join(TOP_DIR, "onnxoptimizer")
CMAKE_BUILD_DIR = os.path.join(
TOP_DIR, ".setuptools-cmake-build{}.{}".format(*sys.version_info[:2])
)
WINDOWS = os.name == "nt"
MACOS = sys.platform.startswith("darwin")
CMAKE = shutil.which("cmake")
################################################################################
# Global variables for controlling the build variant
################################################################################
USE_MSVC_STATIC_RUNTIME = bool(os.getenv("USE_MSVC_STATIC_RUNTIME", "0") == "1")
ONNX_ML = not bool(os.getenv("ONNX_ML") == "0")
ONNX_VERIFY_PROTO3 = bool(os.getenv("ONNX_VERIFY_PROTO3") == "1")
ONNX_NAMESPACE = os.getenv("ONNX_NAMESPACE", "onnx")
ONNX_BUILD_TESTS = bool(os.getenv("ONNX_BUILD_TESTS") == "1")
ONNX_OPT_USE_SYSTEM_PROTOBUF = bool(os.getenv("ONNX_OPT_USE_SYSTEM_PROTOBUF", "0") == "1")
ONNX_USE_LITE_PROTO = bool(os.getenv("ONNX_USE_LITE_PROTO", "1") == "1")
DEBUG = bool(os.getenv("DEBUG"))
COVERAGE = bool(os.getenv("COVERAGE"))
################################################################################
# Version
################################################################################
try:
git_version = (
subprocess.check_output(["git", "rev-parse", "HEAD"], cwd=TOP_DIR)
.decode("ascii")
.strip()
)
except (OSError, subprocess.CalledProcessError):
git_version = None
class VersionInfo(NamedTuple):
version: str
git_version: str | None
with open(os.path.join(TOP_DIR, "VERSION_NUMBER")) as version_file:
version_info = VersionInfo(version=version_file.read().strip(), git_version=git_version)
################################################################################
# Pre Check
################################################################################
assert CMAKE, 'Could not find "cmake" executable!'
################################################################################
# Utilities
################################################################################
@contextmanager
def cd(path):
if not os.path.isabs(path):
raise RuntimeError(f"Can only cd to absolute path, got: {path}")
orig_path = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(orig_path)
################################################################################
# Customized commands
################################################################################
class ONNXCommand(setuptools.Command):
user_options: ClassVar[list] = []
def initialize_options(self):
pass
def finalize_options(self):
pass
class create_version(ONNXCommand):
def run(self):
with open(os.path.join(SRC_DIR, "version.py"), "w") as f:
f.write(
dedent(
"""\
# This file is generated by setup.py. DO NOT EDIT!
version = '{version}'
git_version = '{git_version}'
""".format(**dict(version_info._asdict()))
)
)
class cmake_build(setuptools.Command):
"""
Compiles everything when `python setupmnm.py build` is run using cmake.
Custom args can be passed to cmake by specifying the `CMAKE_ARGS`
environment variable.
The number of CPUs used by `make` can be specified by passing `-j<ncpus>`
to `setup.py build`. By default all CPUs are used.
"""
user_options: ClassVar[list] = [
("jobs=", "j", "Specifies the number of jobs to use with make")
]
built = False
def initialize_options(self):
self.jobs = None
def finalize_options(self):
self.set_undefined_options("build", ("parallel", "jobs"))
if self.jobs is None and os.getenv("MAX_JOBS") is not None:
self.jobs = os.getenv("MAX_JOBS")
self.jobs = multiprocessing.cpu_count() if self.jobs is None else int(self.jobs)
def run(self):
if cmake_build.built:
return
cmake_build.built = True
if not os.path.exists(CMAKE_BUILD_DIR):
os.makedirs(CMAKE_BUILD_DIR)
with cd(CMAKE_BUILD_DIR):
build_type = "Release"
# configure
cmake_args = [
CMAKE,
f"-DPython_INCLUDE_DIR={sysconfig.get_python_inc()}",
f"-DPython_EXECUTABLE={sys.executable}",
"-DONNX_BUILD_PYTHON=ON",
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON",
f"-DONNX_NAMESPACE={ONNX_NAMESPACE}",
"-DONNX_OPT_USE_SYSTEM_PROTOBUF={}".format(
"ON" if ONNX_OPT_USE_SYSTEM_PROTOBUF else "OFF"
),
]
if COVERAGE:
cmake_args.append("-DONNX_COVERAGE=ON")
if COVERAGE or DEBUG:
# in order to get accurate coverage information, the
# build needs to turn off optimizations
build_type = "Debug"
cmake_args.append(f"-DCMAKE_BUILD_TYPE={build_type}")
if WINDOWS:
cmake_args.extend(
[
# we need to link with libpython on windows, so
# passing python version to window in order to
# find python in cmake
"-DPY_VERSION={}".format("{}.{}".format(*sys.version_info[:2])),
]
)
if USE_MSVC_STATIC_RUNTIME:
cmake_args.append("-DONNX_USE_MSVC_STATIC_RUNTIME=ON")
if platform.architecture()[0] == "64bit":
cmake_args.extend(["-A", "x64", "-T", "host=x64"])
else:
cmake_args.extend(["-A", "Win32", "-T", "host=x86"])
if MACOS:
# Cross-compile support for macOS - respect ARCHFLAGS if set
archs = re.findall(r"-arch (\S+)", os.environ.get("ARCHFLAGS", ""))
if archs:
cmake_args += ["-DCMAKE_OSX_ARCHITECTURES={}".format(";".join(archs))]
if ONNX_ML:
cmake_args.append("-DONNX_ML=1")
if ONNX_VERIFY_PROTO3:
cmake_args.append("-DONNX_VERIFY_PROTO3=1")
if ONNX_BUILD_TESTS:
cmake_args.append("-DONNX_BUILD_TESTS=ON")
if "CMAKE_ARGS" in os.environ:
extra_cmake_args = shlex.split(os.environ["CMAKE_ARGS"])
# prevent crossfire with downstream scripts
del os.environ["CMAKE_ARGS"]
log.info(f"Extra cmake args: {extra_cmake_args}")
cmake_args.extend(extra_cmake_args)
cmake_args.append(TOP_DIR)
subprocess.check_call(cmake_args)
build_args = [CMAKE, "--build", os.curdir]
if WINDOWS:
build_args.extend(["--config", build_type])
build_args.extend(["--", f"/maxcpucount:{self.jobs}"])
else:
build_args.extend(["--", "-j", str(self.jobs)])
subprocess.check_call(build_args)
class build_py(setuptools.command.build_py.build_py):
def run(self):
self.run_command("create_version")
self.run_command("cmake_build")
generated_python_files = glob.glob(
os.path.join(CMAKE_BUILD_DIR, "onnxoptimizer", "*.py")
) + glob.glob(os.path.join(CMAKE_BUILD_DIR, "onnxoptimizer", "*.pyi"))
for src in generated_python_files:
dst = os.path.join(TOP_DIR, os.path.relpath(src, CMAKE_BUILD_DIR))
self.copy_file(src, dst)
return setuptools.command.build_py.build_py.run(self)
class develop(setuptools.command.develop.develop):
def run(self):
self.run_command("build_py")
setuptools.command.develop.develop.run(self)
class build_ext(setuptools.command.build_ext.build_ext):
def run(self):
self.run_command("cmake_build")
setuptools.command.build_ext.build_ext.run(self)
def build_extensions(self):
for ext in self.extensions:
fullname = self.get_ext_fullname(ext.name)
filename = os.path.basename(self.get_ext_filename(fullname))
lib_path = CMAKE_BUILD_DIR
if os.name == "nt":
debug_lib_dir = os.path.join(lib_path, "Debug")
release_lib_dir = os.path.join(lib_path, "Release")
if os.path.exists(debug_lib_dir):
lib_path = debug_lib_dir
elif os.path.exists(release_lib_dir):
lib_path = release_lib_dir
src = os.path.join(lib_path, filename)
lib_dir = os.path.join(os.path.realpath(self.build_lib), "onnxoptimizer")
dst = os.path.realpath(os.path.join(lib_dir, filename))
os.makedirs(lib_dir, exist_ok=True)
self.copy_file(src, dst)
class mypy_type_check(ONNXCommand):
description = "Run MyPy type checker"
def run(self):
"""Run command."""
onnx_script = os.path.realpath(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "tools/mypy-onnx.py")
)
returncode = subprocess.call([sys.executable, onnx_script])
sys.exit(returncode)
cmdclass = {
"create_version": create_version,
"cmake_build": cmake_build,
"build_py": build_py,
"develop": develop,
"build_ext": build_ext,
"typecheck": mypy_type_check,
}
################################################################################
# Extensions
################################################################################
################################################################################
# Extensions
################################################################################
# Enable limited ABI build
# nanobind supports limited ABI for Python 3.12 and later.
# https://blog.trailofbits.com/2022/11/15/python-wheels-abi-abi3audit/
# 1. The Py_LIMITED_API macro is defined in the extension
# 2. py_limited_api in Extension tags the extension as abi3
# 3. bdist_wheel options tag the wheel as abi3
NO_GIL = hasattr(sys, "_is_gil_enabled") and not sys._is_gil_enabled()
PY_312_OR_NEWER = sys.version_info >= (3, 12)
USE_LIMITED_API = not NO_GIL and PY_312_OR_NEWER and platform.system() != "FreeBSD"
macros = []
if USE_LIMITED_API:
macros.append(("Py_LIMITED_API", "0x030C0000"))
ext_modules = [
setuptools.Extension(
name="onnxoptimizer.onnx_opt_cpp2py_export",
sources=[],
py_limited_api=USE_LIMITED_API,
define_macros=macros,
)
]
################################################################################
# Packages
################################################################################
# no need to do fancy stuff so far
packages = setuptools.find_packages()
################################################################################
# Test
################################################################################
bdist_wheel_options = {}
if USE_LIMITED_API:
bdist_wheel_options["py_limited_api"] = "cp312"
setup_opts = {}
if bdist_wheel_options:
setup_opts["bdist_wheel"] = bdist_wheel_options
setuptools.setup(
version=version_info.version,
ext_modules=ext_modules,
cmdclass=cmdclass,
packages=packages,
include_package_data=True,
options=setup_opts,
)