This repository has been archived by the owner on May 19, 2021. It is now read-only.
forked from explosion/thinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
331 lines (282 loc) · 11.7 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
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
#!/usr/bin/env python
from __future__ import print_function
import io
import os
import subprocess
import sys
import contextlib
from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc
from distutils import ccompiler, msvccompiler
from setuptools import Extension, setup
PACKAGES = [
'thinc',
'thinc.tests',
'thinc.tests.unit',
'thinc.tests.integration',
'thinc.tests.linear',
'thinc.linear',
'thinc.neural',
'thinc.extra',
'thinc.neural._classes',
'thinc.extra._vendorized'
]
MOD_NAMES = [
'thinc.linalg',
'thinc.openblas',
'thinc.structs',
'thinc.typedefs',
'thinc.linear.avgtron',
'thinc.linear.features',
'thinc.linear.serialize',
'thinc.linear.sparse',
'thinc.linear.linear',
'thinc.neural.optimizers',
'thinc.neural.ops',
'thinc.neural.gpu_ops',
'thinc.neural._aligned_alloc',
'thinc.extra.eg',
'thinc.extra.mb',
'thinc.extra.search',
'thinc.extra.cache',
]
compile_options = {'msvc' : ['/Ox', '/EHsc'],
'other' : {
'gcc': ['-O2', '-Wno-strict-prototypes', '-Wno-unused-function'],
'nvcc': ['-arch=sm_30', '--ptxas-options=-v', '-c', '--compiler-options', "'-fPIC'"]}}
link_options = {'msvc' : [], 'other' : []}
def link_static_openblas(root):
pxi_loc = os.path.join(root, 'thinc', 'compile_time_constants.pxi')
with open(pxi_loc, 'r') as file_:
pxi = file_.read()
if 'THINC_CBLAS' in os.environ:
lib_loc = os.environ['THINC_CBLAS']
lib_path, lib_name = os.path.split(lib_loc)
if lib_name.endswith('.so'):
is_shared = True
lib_name = lib_name[3:-3]
else:
is_shared = False
print('Using BLAS:', lib_path, lib_name)
compile_options['other']['gcc'].append('-L%s' % lib_path)
link_options['other'].append('-L%s' % lib_path)
if is_shared:
compile_options['other']['gcc'].append('-l%s' % lib_name)
link_options['other'].append('-l%s' % lib_name)
else:
compile_options['other']['gcc'].append('-l:%s' % lib_name)
link_options['other'].append('-l:%s' % lib_name)
pxi = pxi.replace('DEF USE_BLAS = False', 'DEF USE_BLAS = True')
else:
print('Not compiling BLAS')
pxi = pxi.replace('DEF USE_BLAS = True', 'DEF USE_BLAS = False')
with open(pxi_loc, 'w') as file_:
file_.write(pxi)
def customize_compiler_for_nvcc(self):
"""inject deep into distutils to customize how the dispatch
to gcc/nvcc works.
If you subclass UnixCCompiler, it's not trivial to get your subclass
injected in, and still have the right customizations (i.e.
distutils.sysconfig.customize_compiler) run on it. So instead of going
the OO route, I have this. Note, it's kindof like a wierd functional
subclassing going on."""
# tell the compiler it can processes .cu
self.src_extensions.append('.cu')
# save references to the default compiler_so and _comple methods
if hasattr(self, 'compiler_so'):
default_compiler_so = self.compiler_so
else:
# This was put in for Windows, but I'm running blind here...
default_compiler_so = None
super = self._compile
# now redefine the _compile method. This gets executed for each
# object but distutils doesn't have the ability to change compilers
# based on source extension: we add it.
def _compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
if os.path.splitext(src)[1] == '.cu' and CUDA is not None:
# use the cuda for .cu files
if hasattr(self, 'set_executable'):
# This was put in for Windows, but I'm running blind here...
self.set_executable('compiler_so', CUDA['nvcc'])
# use only a subset of the extra_postargs, which are 1-1 translated
# from the extra_compile_args in the Extension class
postargs = extra_postargs['nvcc']
else:
postargs = extra_postargs['gcc']
super(obj, src, ext, cc_args, postargs, pp_opts)
# reset the default compiler_so, which we might have changed for cuda
self.compiler_so = default_compiler_so
# inject our redefined _compile method into the class
self._compile = _compile
# 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):
for e in self.extensions:
e.extra_compile_args = compile_options.get(
self.compiler.compiler_type, compile_options['other'])
for e in self.extensions:
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)
customize_compiler_for_nvcc(self.compiler)
build_ext.build_extensions(self)
def generate_cython(root, source):
print('Cythonizing sources')
p = subprocess.call([sys.executable,
os.path.join(root, 'bin', 'cythonize.py'),
source], env=os.environ)
if p != 0:
raise RuntimeError('Running cythonize failed')
def find_in_path(name, path):
"Find a file in a search path"
#adapted fom http://code.activestate.com/recipes/52224-find-a-file-given-a-search-path/
for dir in path.split(os.pathsep):
binpath = os.path.join(dir, name)
if os.path.exists(binpath):
return os.path.abspath(binpath)
return None
def locate_cuda():
"""Locate the CUDA environment on the system
Returns a dict with keys 'home', 'nvcc', 'include', and 'lib64'
and values giving the absolute path to each directory.
Starts by looking for the CUDAHOME env variable. If not found, everything
is based on finding 'nvcc' in the PATH.
"""
# first check if the CUDAHOME env variable is in use
if 'CUDA_HOME' in os.environ:
home = os.environ['CUDA_HOME']
nvcc = os.path.join(home, 'bin', 'nvcc')
else:
# otherwise, search the PATH for NVCC
nvcc = find_in_path('nvcc', os.environ['PATH'])
if nvcc is None:
print('Warning: The nvcc binary could not be located in your $PATH. '
'For GPU capability, either add it to your path, or set $CUDA_HOME')
return None
home = os.path.dirname(os.path.dirname(nvcc))
cudaconfig = {'home':home, 'nvcc':nvcc,
'include': os.path.join(home, 'include'),
'lib64': os.path.join(home, 'lib64')}
for k, v in cudaconfig.items():
if not os.path.exists(v):
print('Warning: The CUDA %s path could not be located in %s' % (k, v))
return None
return cudaconfig
CUDA = locate_cuda()
def is_source_release(path):
return os.path.exists(os.path.join(path, 'PKG-INFO'))
def clean(path):
for name in MOD_NAMES:
name = name.replace('.', '/')
for ext in ['.so', '.html', '.cpp', '.c']:
file_path = os.path.join(path, name + ext)
if os.path.exists(file_path):
os.unlink(file_path)
@contextlib.contextmanager
def chdir(new_dir):
old_dir = os.getcwd()
try:
os.chdir(new_dir)
sys.path.insert(0, new_dir)
yield
finally:
del sys.path[0]
os.chdir(old_dir)
def setup_package():
root = os.path.abspath(os.path.dirname(__file__))
if len(sys.argv) > 1 and sys.argv[1] == 'clean':
return clean(root)
link_static_openblas(root)
with chdir(root):
with open(os.path.join(root, 'thinc', 'about.py')) as f:
about = {}
exec(f.read(), about)
with io.open(os.path.join(root, 'README.rst'), encoding='utf8') as f:
readme = f.read()
include_dirs = [
get_python_inc(plat_specific=True),
os.path.join(root, 'include')]
if (ccompiler.new_compiler().compiler_type == 'msvc'
and msvccompiler.get_build_version() == 9):
include_dirs.append(os.path.join(root, 'include', 'msvc9'))
ext_modules = []
for mod_name in MOD_NAMES:
if mod_name.endswith('gpu_ops'):
continue
mod_path = mod_name.replace('.', '/') + '.cpp'
ext_modules.append(
Extension(mod_name, [mod_path],
language='c++', include_dirs=include_dirs
))
if CUDA is None:
pass
else:
with chdir(root):
ext_modules.append(
Extension("thinc.neural.gpu_ops",
sources=["thinc/neural/gpu_ops.cpp", "include/_cuda_shim.cu"],
library_dirs=[CUDA['lib64']],
libraries=['cudart'],
language='c++',
runtime_library_dirs=[CUDA['lib64']],
# this syntax is specific to this build system
# we're only going to use certain compiler args with nvcc and not with gcc
# the implementation of this trick is in customize_compiler() below
extra_compile_args=['-arch=sm_30', '--ptxas-options=-v', '-c',
'--compiler-options', "'-fPIC'"],
include_dirs = include_dirs + [CUDA['include']]))
if not is_source_release(root):
generate_cython(root, 'thinc')
setup(
name=about['__title__'],
zip_safe=False,
packages=PACKAGES,
package_data={'': ['*.pyx', '*.pxd', '*.pxi', '*.cpp']},
description=about['__summary__'],
long_description=readme,
author=about['__author__'],
author_email=about['__email__'],
version=about['__version__'],
url=about['__uri__'],
license=about['__license__'],
ext_modules=ext_modules,
install_requires=[
'numpy>=1.7',
'murmurhash>=0.28,<0.29',
'cymem>=1.30,<1.32.0',
'preshed>=1.0.0,<2.0.0',
'hypothesis>=2,<3',
'tqdm>=4.10.0,<5.0.0',
'plac>=0.9,<1.0',
'termcolor>=1.1.0,<1.2.0',
'wrapt>=1.10.0,<1.11.0',
'dill>=0.2.7,<0.3',
'pathlib>=1.0.0,<2.0.0',
'msgpack-python==0.5.4',
'msgpack-numpy==0.4.1',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Cython',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering'],
cmdclass = {
'build_ext': build_ext_subclass},
)
if __name__ == '__main__':
setup_package()