-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
304 lines (246 loc) · 9.54 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
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
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# --------------------------------------------------------------------------
import glob
import os
import re
import shutil
import subprocess
from pathlib import Path
from packaging.version import Version, parse
from setuptools import Command, Extension, find_packages, setup
from setuptools.command.build_ext import build_ext
from setuptools.command.develop import develop
from torch.utils.cpp_extension import CUDA_HOME
cur_path = Path(__file__).parent
def get_version():
with open(cur_path / "pyproject.toml") as f:
for line in f:
if "version" in line:
return line.split("=")[-1].strip().strip('"')
return "0.0.1"
def get_cuda_bare_metal_version(cuda_dir):
raw_output = subprocess.check_output(
[cuda_dir + "/bin/nvcc", "-V"], universal_newlines=True
)
output = raw_output.split()
release_idx = output.index("release") + 1
bare_metal_version = parse(output[release_idx].split(",")[0])
return raw_output, bare_metal_version
def nvcc_threads():
_, bare_metal_version = get_cuda_bare_metal_version(CUDA_HOME)
if bare_metal_version >= Version("11.2"):
nvcc_threads = os.getenv("NVCC_THREADS") or (os.cpu_count() // 2)
return nvcc_threads
class CMakeExtension(Extension):
"""specify the root folder of the CMake projects"""
def __init__(self, name, cmake_lists_dir=".", **kwargs):
Extension.__init__(self, name, sources=[], **kwargs)
self.cmake_lists_dir = os.path.abspath(cmake_lists_dir)
if os.path.isdir(".git"):
subprocess.run(
["git", "submodule", "update", "--init", "third_party/cutlass"],
check=True,
)
else:
if not os.path.exists(
"third_party/cutlass/include/cutlass/cutlass.h"
):
raise RuntimeError(
(
"third_party/cutlass is missing, "
"please use source distribution or git clone"
)
)
class CMakeBuildExt(build_ext):
"""launches the CMake build."""
def copy_extensions_to_source(self) -> None:
pass
def build_extension(self, ext: CMakeExtension) -> None:
# Ensure that CMake is present and working
try:
subprocess.check_output(["cmake", "--version"])
except OSError:
raise RuntimeError("Cannot find CMake executable") from None
debug = (
int(os.environ.get("DEBUG", 0))
if self.debug is None
else self.debug
)
cfg = "Debug" if debug else "Release"
# Set CUDA_ARCH_LIST to build the shared library
# for the specified GPU architectures.
arch_list = os.environ.get("TORCH_CUDA_ARCH_LIST", None)
parallel_level = os.environ.get("CMAKE_BUILD_PARALLEL_LEVEL", None)
if parallel_level is not None:
self.parallel = int(parallel_level)
else:
self.parallel = os.cpu_count()
for ext in self.extensions:
# Get the package directory where the library should be installed
package_dir = os.path.join(self.build_lib, "vptq")
os.makedirs(package_dir, exist_ok=True)
# Create build directory for this extension
build_temp = Path(self.build_temp) / ext.name
if not build_temp.exists():
build_temp.mkdir(parents=True)
# Get the absolute path for the library output directory
lib_output_dir = os.path.abspath(package_dir)
cmake_args = [
"-DCMAKE_BUILD_TYPE=%s" % cfg,
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={}".format(lib_output_dir),
"-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY={}".format(str(build_temp)),
(
"-DUSER_CUDA_ARCH_LIST={}".format(arch_list)
if arch_list
else ""
),
"-DNVCC_THREADS={}".format(nvcc_threads()),
]
# Adding CMake arguments set as environment variable
if "CMAKE_ARGS" in os.environ:
cmake_args += [
item for item in os.environ["CMAKE_ARGS"].split(" ") if item
]
build_args = []
build_args += ["--config", cfg]
# Set CMAKE_BUILD_PARALLEL_LEVEL to control the parallel build level
# across all generators.
if (
"CMAKE_BUILD_PARALLEL_LEVEL" not in os.environ
and hasattr(self, "parallel")
and self.parallel
):
build_args += [f"-j{self.parallel}"]
# Config
subprocess.check_call(
["cmake", ext.cmake_lists_dir] + cmake_args, cwd=str(build_temp)
)
# Build
subprocess.check_call(
["cmake", "--build", "."] + build_args, cwd=str(build_temp)
)
# Verify the library was built
target = "libvptq.so"
target_path = Path(package_dir) / target
if not target_path.exists():
raise FileNotFoundError(
(
"Library was not built in the expected "
f"location: {target_path}"
)
)
class Develop(develop):
"""Post-installation for development mode."""
def _find_built_library(self, build_dir: Path) -> Path | None:
"""Find the built library in the build directory.
Args:
build_dir: Path to the build directory
Returns:
Path to the built library if found, None otherwise
"""
target = "libvptq.so"
for lib_dir in build_dir.glob("lib.*"):
lib_path = lib_dir / "vptq" / target
if lib_path.exists():
return lib_path
return None
def _copy_library_to_source(
self, source_lib: Path, target_lib: Path
) -> None:
"""Copy the library to the source directory.
Args:
source_lib: Path to the source library
target_lib: Path where the library should be copied
"""
self.copy_file(str(source_lib), str(target_lib), level=self.verbose)
def run(self):
"""Run the develop command."""
develop.run(self)
source_dir = Path("vptq")
source_dir.mkdir(parents=True, exist_ok=True)
target_lib = source_dir / "libvptq.so"
build_dir = Path("build")
if not build_dir.exists():
print("Warning: Build directory not found")
return
source_lib = self._find_built_library(build_dir)
if source_lib:
self._copy_library_to_source(source_lib, target_lib)
else:
print(f"Warning: Built library not found in {build_dir}")
class Clean(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
# clean the dynamic library if it exists in the source directory
# the dynamic library might be copied to the source directory
# under the develop mode
lib_path = Path("vptq") / "libvptq.so"
if lib_path.exists():
print(f"cleaning dynamic library '{lib_path}'")
try:
os.remove(lib_path)
except OSError as e:
print(f"Warning: Could not remove {lib_path}: {e}")
# Then clean other files based on .gitignore
with open(".gitignore") as f:
ignores = f.read()
pat = re.compile(r"^#( BEGIN NOT-CLEAN-FILES )?")
for wildcard in filter(None, ignores.split("\n")):
match = pat.match(wildcard)
if match:
if match.group(1):
# Marker is found and stop reading .gitignore.
break
# Ignore lines which begin with '#'.
else:
# Don't remove absolute paths from the system
wildcard = wildcard.lstrip("./")
for filename in glob.glob(wildcard):
print(f"cleaning '{filename}'")
try:
os.remove(filename)
except OSError:
shutil.rmtree(filename, ignore_errors=True)
class PyTest(Command):
"""Run pytest for running tests."""
user_options = [
("pytest-args=", "a", "Arguments to pass to pytest"),
]
def initialize_options(self):
self.pytest_args = ""
def finalize_options(self):
pass
def run(self):
import pytest
errno = pytest.main(["tests"] + self.pytest_args.split())
if errno:
raise SystemExit(errno)
description = (
"VPTQ: Extreme Low-bit Vector Post-Training Quantization "
"for Large Language Models"
)
setup(
name="vptq",
python_requires=">=3.8",
packages=find_packages(exclude=["vptq.third_party*", "vptq.tests*"]),
version=get_version(),
description=description,
author="Wang Yang, Wen JiCheng, Cao Ying",
ext_modules=[CMakeExtension("vptq")],
cmdclass={
"build_ext": CMakeBuildExt,
"clean": Clean,
"develop": Develop,
"tests": PyTest,
},
package_data={
"vptq": ["**/*.py"],
},
include_package_data=True,
)