-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·182 lines (160 loc) · 5.02 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
#!/usr/bin/env python
import sys
from setuptools.command.build_ext import build_ext
from setuptools import Extension, setup, find_packages
from pathlib import Path
from Cython.Build import cythonize
from Cython.Compiler import Options
# Preserve `__doc__` on functions and classes
# http://docs.cython.org/en/latest/src/userguide/source_files_and_compilation.html#compiler-options
Options.docstrings = True
def prefix_path(prefix, files):
return list(map(lambda f: f"{prefix}/{f}", files))
ABSL_SRC = prefix_path("sentencepiece/third_party/absl", ["flags/flag.cc"])
PROTOBUF_LIGHT_SRC = prefix_path(
"sentencepiece/third_party/protobuf-lite",
[
"arena.cc",
"arenastring.cc",
"bytestream.cc",
"coded_stream.cc",
"common.cc",
"extension_set.cc",
"generated_enum_util.cc",
"generated_message_table_driven_lite.cc",
"generated_message_util.cc",
"implicit_weak_message.cc",
"int128.cc",
"io_win32.cc",
"message_lite.cc",
"parse_context.cc",
"repeated_field.cc",
"status.cc",
"statusor.cc",
"stringpiece.cc",
"stringprintf.cc",
"structurally_valid.cc",
"strutil.cc",
"time.cc",
"wire_format_lite.cc",
"zero_copy_stream.cc",
"zero_copy_stream_impl.cc",
"zero_copy_stream_impl_lite.cc",
],
)
SENTENCEPIECE_PROTOBUF_SRC = prefix_path(
"sentencepiece/src/builtin_pb", ["sentencepiece.pb.cc", "sentencepiece_model.pb.cc"]
)
SENTENCEPIECE_SRC = prefix_path(
"sentencepiece/src",
[
"bpe_model.cc",
"char_model.cc",
"error.cc",
"filesystem.cc",
"model_factory.cc",
"model_interface.cc",
"normalizer.cc",
"sentencepiece_processor.cc",
"unigram_model.cc",
"util.cc",
"word_model.cc",
],
)
PACKAGES = find_packages()
MOD_NAMES = [
"curated_tokenizers.sp",
]
COMPILE_OPTIONS = {
"msvc": [
"/std:c++17",
"/Ox",
"/EHsc",
"/DHAVE_PTHREAD",
"/wd4018",
"/wd4514",
],
"other": [
"--std=c++17",
"-Wno-sign-compare" "-Wno-strict-prototypes",
"-Wno-unused-function",
"-pthread",
"-DHAVE_PTHREAD=1",
],
}
COMPILER_DIRECTIVES = {
"language_level": -3,
"embedsignature": True,
"annotation_typing": False,
}
LINK_OPTIONS = {"msvc": [], "other": []}
# By subclassing build_extensions we have the actual compiler that will be used
# which is really known only after finalize_options
# http://stackoverflow.com/questions/724664/python-distutils-how-to-get-a-compiler-that-is-going-to-be-used
class build_ext_options:
def build_options(self):
if hasattr(self.compiler, "initialize"):
self.compiler.initialize()
self.compiler.platform = sys.platform[:6]
for e in self.extensions:
e.extra_compile_args = COMPILE_OPTIONS.get(
self.compiler.compiler_type, COMPILE_OPTIONS["other"]
)
e.extra_link_args = LINK_OPTIONS.get(
self.compiler.compiler_type, LINK_OPTIONS["other"]
)
class build_ext_subclass(build_ext, build_ext_options):
def build_extensions(self):
build_ext_options.build_options(self)
build_ext.build_extensions(self)
def clean(path):
for path in path.glob("**/*"):
if path.is_file() and path.suffix in (".so", ".cpp"):
print(f"Deleting {path.name}")
path.unlink()
def setup_package():
root = Path(__file__).parent
if len(sys.argv) > 1 and sys.argv[1] == "clean":
return clean(root / "curated_tokenizers")
ext_modules = [
Extension(
"curated_tokenizers._spp",
["curated_tokenizers/_spp.pyx"]
+ ABSL_SRC
+ PROTOBUF_LIGHT_SRC
+ SENTENCEPIECE_SRC
+ SENTENCEPIECE_PROTOBUF_SRC,
include_dirs=[
"curated_tokenizers",
"sentencepiece",
"sentencepiece/src",
"sentencepiece/src/builtin_pb",
"sentencepiece/third_party/protobuf-lite",
],
language="c++",
),
Extension(
"curated_tokenizers._wordpiece",
["curated_tokenizers/_wordpiece.pyx", "curated_tokenizers/wordpiece.cc"],
language="c++",
),
Extension(
"curated_tokenizers._bbpe",
["curated_tokenizers/_bbpe.pyx", "curated_tokenizers/merges.cc"],
include_dirs=["curated_tokenizers"],
language="c++",
),
]
print("Cythonizing sources")
ext_modules = cythonize(
ext_modules, compiler_directives=COMPILER_DIRECTIVES, language_level=2
)
setup(
name="curated-tokenizers",
packages=PACKAGES,
ext_modules=ext_modules,
cmdclass={"build_ext": build_ext_subclass},
package_data={"": ["*.pyx", "*.pxd", "*.pxi", "*.cu", "*.hh"]},
)
if __name__ == "__main__":
setup_package()