forked from chainer/chainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chainer_setup_build.py
299 lines (238 loc) · 8.93 KB
/
chainer_setup_build.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
from __future__ import print_function
import copy
import distutils
import os
from os import path
import shutil
import subprocess
import sys
import tempfile
import pkg_resources
import setuptools
from setuptools.command import build_ext
from install import build
from install import utils
dummy_extension = setuptools.Extension('chainer', ['chainer.c'])
cython_version = '0.23.0'
MODULES = [
{
'name': 'cuda',
'file': [
'cupy.core.core',
'cupy.core.flags',
'cupy.core.internal',
'cupy.cuda.cublas',
'cupy.cuda.curand',
'cupy.cuda.device',
'cupy.cuda.driver',
'cupy.cuda.memory',
'cupy.cuda.profiler',
'cupy.cuda.function',
'cupy.cuda.runtime',
'cupy.util',
],
'include': [
'cublas_v2.h',
'cuda.h',
'cuda_profiler_api.h',
'cuda_runtime.h',
'curand.h',
],
'libraries': [
'cublas',
'cuda',
'cudart',
'curand',
],
'check_method': build.check_cuda_version,
},
{
'name': 'cudnn',
'file': [
'cupy.cuda.cudnn',
],
'include': [
'cudnn.h',
],
'libraries': [
'cudnn',
],
'check_method': build.check_cudnn_version,
}
]
def localpath(*args):
return path.abspath(path.join(path.dirname(__file__), *args))
def check_include(dirs, file_path):
return any(path.exists(path.join(dir, file_path)) for dir in dirs)
def check_readthedocs_environment():
return os.environ.get('READTHEDOCS', None) == 'True'
def check_library(compiler, includes=(), libraries=(),
include_dirs=(), library_dirs=()):
temp_dir = tempfile.mkdtemp()
try:
source = '''
int main(int argc, char* argv[]) {
return 0;
}
'''
fname = os.path.join(temp_dir, 'a.cpp')
with open(fname, 'w') as f:
for header in includes:
f.write('#include <%s>\n' % header)
f.write(source)
try:
objects = compiler.compile([fname], output_dir=temp_dir,
include_dirs=include_dirs)
except distutils.errors.CompileError:
return False
try:
compiler.link_shared_lib(objects,
os.path.join(temp_dir, 'a'),
libraries=libraries,
library_dirs=library_dirs,
target_lang='c++')
except (distutils.errors.LinkError, TypeError):
return False
return True
finally:
shutil.rmtree(temp_dir, ignore_errors=True)
def make_extensions(options, compiler):
"""Produce a list of Extension instances which passed to cythonize()."""
no_cuda = options['no_cuda']
settings = build.get_compiler_setting()
include_dirs = settings['include_dirs']
settings['include_dirs'] = [
x for x in include_dirs if path.exists(x)]
settings['library_dirs'] = [
x for x in settings['library_dirs'] if path.exists(x)]
if sys.platform != 'win32':
settings['runtime_library_dirs'] = settings['library_dirs']
if sys.platform == 'darwin':
args = settings.setdefault('extra_link_args', [])
args.append(
'-Wl,' + ','.join('-rpath,' + path
for path in settings['library_dirs']))
# -rpath is only supported when targetting Mac OS X 10.5 or later
args.append('-mmacosx-version-min=10.5')
if options['linetrace']:
settings['define_macros'].append(('CYTHON_TRACE', '1'))
settings['define_macros'].append(('CYTHON_TRACE_NOGIL', '1'))
if no_cuda:
settings['define_macros'].append(('CUPY_NO_CUDA', '1'))
ret = []
for module in MODULES:
print('Include directories:', settings['include_dirs'])
print('Library directories:', settings['library_dirs'])
if not no_cuda:
if not check_library(compiler,
includes=module['include'],
include_dirs=settings['include_dirs']):
utils.print_warning(
'Include files not found: %s' % module['include'],
'Skip installing %s support' % module['name'],
'Check your CPATH environment variable')
continue
if not check_library(compiler,
libraries=module['libraries'],
library_dirs=settings['library_dirs']):
utils.print_warning(
'Cannot link libraries: %s' % module['libraries'],
'Skip installing %s support' % module['name'],
'Check your LIBRARY_PATH environment variable')
continue
if 'check_method' in module and \
not module['check_method'](compiler, settings):
continue
s = settings.copy()
if not no_cuda:
s['libraries'] = module['libraries']
ret.extend([
setuptools.Extension(f, [path.join(*f.split('.')) + '.pyx'], **s)
for f in module['file']])
return ret
_arg_options = {}
def parse_args():
global _arg_options
_arg_options['profile'] = '--cupy-profile' in sys.argv
if _arg_options['profile']:
sys.argv.remove('--cupy-profile')
cupy_coverage = '--cupy-coverage' in sys.argv
if cupy_coverage:
sys.argv.remove('--cupy-coverage')
_arg_options['linetrace'] = cupy_coverage
_arg_options['annotate'] = cupy_coverage
_arg_options['no_cuda'] = '--cupy-no-cuda' in sys.argv
if _arg_options['no_cuda']:
sys.argv.remove('--cupy-no-cuda')
if check_readthedocs_environment():
_arg_options['no_cuda'] = True
def get_cython_pkg():
try:
return pkg_resources.get_distribution('cython')
except pkg_resources.DistributionNotFound:
return None
def run_command(cmd):
try:
subprocess.check_output(cmd, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
msg = '''Command %r failed:
command: %s
return code: %d
output:
%s''' % (cmd[0], ' '.join(e.cmd), e.returncode, e.output)
raise distutils.errors.DistutilsExecError(msg)
def cythonize(
extensions, force=False, annotate=False, compiler_directives=None):
cython_location = get_cython_pkg().location
cython_path = path.join(cython_location, 'cython.py')
print("cython path:%s" % cython_location)
cmd = [sys.executable, cython_path]
run_command(cmd + ['--version'])
cmd.extend(['--fast-fail', '--verbose', '--cplus'])
if compiler_directives is not None:
for i in compiler_directives.items():
cmd.append('--directive')
cmd.append('%s=%s' % i)
for ext in extensions:
run_command(cmd + ext.sources)
def to_cpp_extensions(extensions):
ret = []
for x in extensions:
ext = copy.copy(x)
ext.sources = [path.splitext(f)[0] + ".cpp" for f in x.sources]
ret.append(ext)
return ret
def check_extensions(extensions):
for x in extensions:
for f in x.sources:
if not path.isfile(f):
msg = ('Missing file: %s\n' % f +
'Please install Cython.\n' +
'See http://docs.chainer.org/en/stable/install.html')
raise RuntimeError(msg)
class chainer_build_ext(build_ext.build_ext):
"""`build_ext` command for cython files."""
def finalize_options(self):
ext_modules = self.distribution.ext_modules
if dummy_extension in ext_modules:
print('Executing cythonize')
print('Options:', _arg_options)
directive_keys = ('linetrace', 'profile')
directives = {key: _arg_options[key] for key in directive_keys}
cythonize_option_keys = ('annotate',)
cythonize_options = {
key: _arg_options[key] for key in cythonize_option_keys}
compiler = distutils.ccompiler.new_compiler(self.compiler)
distutils.sysconfig.customize_compiler(compiler)
extensions = make_extensions(_arg_options, compiler)
cython = get_cython_pkg()
req_version = pkg_resources.parse_version(cython_version)
if cython is not None and cython.parsed_version > req_version:
cythonize(extensions, force=True,
compiler_directives=directives, **cythonize_options)
extensions = to_cpp_extensions(extensions)
check_extensions(extensions)
# Modify ext_modules for cython
ext_modules.remove(dummy_extension)
ext_modules.extend(extensions)
build_ext.build_ext.finalize_options(self)