-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
347 lines (278 loc) · 12.1 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
u"""
setup.py: Install ODIN
Many thanks to Robert McGibbon (rmcgibbo) -- this file is largely stolen from
his MSMBuilder setup.py file.
"""
import os, sys
from os.path import join as pjoin
from glob import glob
# setuptools needs to come before numpy.distutils to get install_requires
import setuptools
from setuptools import setup
from distutils import sysconfig
from distutils.unixccompiler import UnixCCompiler
#from distutils.extension import Extension
from distutils.command.build_ext import build_ext
import numpy
from numpy.distutils.core import setup, Extension
from numpy.distutils.misc_util import Configuration
import subprocess
from subprocess import CalledProcessError
# ------------------------------------------------------------------------------
# HEADER -- metadata for setup()
# ------------------------------------------------------------------------------
VERSION = "0.1a"
ISRELEASED = False
__author__ = "TJ Lane"
__version__ = VERSION
metadata = {
# 'name': 'odin',
'version': VERSION,
'author': __author__,
'author_email': '[email protected]',
'license': 'GPL v3.0',
'url': 'https://github.com/tjlane/odin',
'download_url': 'https://github.com/tjlane/odin',
'install_requires': ['numpy', 'scipy', 'matplotlib', 'pyyaml', 'mdtraj'],
'platforms': ['Linux'],
'zip_safe': False,
'description': "Code for Structure Determination",
'long_description': """ODIN is a simulation toolpackage for producing
models of biomolecular structures consistent with a large set of experimental
data."""}
# ------------------------------------------------------------------------------
# HELPER FUNCTIONS -- path finding, git, python version, readthedocs
# ------------------------------------------------------------------------------
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 = pjoin(dir, name)
if os.path.exists(binpath):
return os.path.abspath(binpath)
return None
# Obtain the numpy include directory. This logic works across numpy versions.
try:
numpy_include = numpy.get_include()
except AttributeError:
numpy_include = numpy.get_numpy_include()
def git_version():
"""
Return the git revision as a string.
Copied from numpy setup.py
"""
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH']:
v = os.environ.get(k)
if v is not None:
env[k] = v
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout = subprocess.PIPE, env=env).communicate()[0]
return out
try:
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
GIT_REVISION = out.strip().decode('ascii')
except OSError:
GIT_REVISION = "Unknown"
return GIT_REVISION
def write_version_py(filename='src/python/version.py'):
cnt = """
# THIS FILE IS GENERATED FROM ODIN SETUP.PY
short_version = '%(version)s'
version = '%(version)s'
full_version = '%(full_version)s'
git_revision = '%(git_revision)s'
release = %(isrelease)s
if not release:
version = full_version
"""
# Adding the git rev number needs to be done inside write_version_py(),
# otherwise the import of numpy.version messes up the build under Python 3.
FULLVERSION = VERSION
if os.path.exists('.git'):
GIT_REVISION = git_version()
else:
GIT_REVISION = "Unknown"
if not ISRELEASED:
FULLVERSION += '.dev-' + GIT_REVISION[:7]
a = open(filename, 'w')
try:
a.write(cnt % {'version': VERSION,
'full_version' : FULLVERSION,
'git_revision' : GIT_REVISION,
'isrelease': str(ISRELEASED)})
finally:
a.close()
# TJL commented out -- readthedocs not set up yet anyways
#
# if os.environ.get('READTHEDOCS', None) == 'True' and __name__ == '__main__':
# # On READTHEDOCS, the service that hosts our documentation, the build
# # environment does not have numpy and cannot build C extension modules,
# # so if we detect this environment variable, we're going to bail out
# # and run a minimal setup. This only installs the python packages, which
# # is not enough to RUN anything, but should be enough to introspect the
# # docstrings, which is what's needed for the documentation
# from distutils.core import setup
# import tempfile, shutil
# write_version_py()
#
# metadata['name'] = 'odin'
# metadata['packages'] = ['odin', 'odin.scripts'] # odin.module, ...
# metadata['scripts'] = [e for e in glob('scripts/*.py') if not e.endswith('__.py')]
#
# # dirty, dirty trick to install "mock" packages
# mockdir = tempfile.mkdtemp()
# open(os.path.join(mockdir, '__init__.py'), 'w').close()
# extensions = ['odin._image_wrap'] # c-extensions to the python code here
# metadata['package_dir'] = {'odin': 'src/python', 'odin.scripts': 'scripts'}
# metadata['packages'].extend(extensions)
# for ex in extensions:
# metadata['package_dir'][ex] = mockdir
# # end dirty trick :)
#
# setup(**metadata)
# shutil.rmtree(mockdir) #clean up dirty trick
# sys.exit(1)
# ------------------------------------------------------------------------------
# GPU FUNCTION WRAPPING -- nvcc support
# python distutils doesn't have NVCC by default
# ------------------------------------------------------------------------------
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 'CUDAHOME' in os.environ:
home = os.environ['CUDAHOME']
nvcc = pjoin(home, 'bin', 'nvcc')
else:
# otherwise, search the PATH for NVCC
nvcc = find_in_path('nvcc', os.environ['PATH'])
if nvcc is None:
print
print '------------------------- WARNING --------------------------'
print 'The nvcc binary could not be located in your $PATH. Either '
print 'add it to your path, or set $CUDAHOME. The installation will'
print 'continue witout CUDA/GPU features.'
print '------------------------------------------------------------'
print
return False
home = os.path.dirname(os.path.dirname(nvcc))
cudaconfig = {'home':home, 'nvcc':nvcc,
'include': pjoin(home, 'include'),
'lib64': pjoin(home, 'lib64')}
for k, v in cudaconfig.iteritems():
if not os.path.exists(v):
print
print '------------------------- WARNING --------------------------'
print 'The CUDA %s path could not be located in %s' % (k, v)
print 'The installation will continue witout CUDA/GPU features.'
print '------------------------------------------------------------'
print
return False
return cudaconfig
CUDA = locate_cuda()
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
default_compiler_so = self.compiler_so
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':
# use the cuda for .cu files
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
# run the customize_compiler
if CUDA:
class custom_build_ext(build_ext):
def build_extensions(self):
customize_compiler_for_nvcc(self.compiler)
build_ext.build_extensions(self)
# -----------------------------------------------------------------------------
# PROCEED TO STANDARD SETUP
# odin, gpuscatter,
# -----------------------------------------------------------------------------
def configuration(parent_package='',top_path=None):
"Configure the build"
config = Configuration('odin',
package_parent=parent_package,
top_path=top_path,
package_path='src/python')
config.set_options(assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=False)
#once all of the data is in one place, we can add it with this
config.add_data_dir('reference')
# add the scipts, so they can be called from the command line
config.add_scripts([s for s in glob('scripts/*') if not s.endswith('__.py')])
# add scripts as a subpackage (so they can be imported from other scripts)
config.add_subpackage('scripts', subpackage_path=None)
print config.todict()
return config
if CUDA:
print "ATTEMPTING TO INSTALL GPUSCATTER"
gpuscatter = Extension('_gpuscatter',
sources=['src/cuda/swig_wrap.cpp', 'src/cuda/gpuscatter_mgr.cu'],
library_dirs=[CUDA['lib64']],
libraries=['cudart'],
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={'gcc': [],
'nvcc': ['-use_fast_math', '-arch=sm_20', '--ptxas-options=-v',
'-c', '--compiler-options', "'-fPIC'"]},
include_dirs = [numpy_include, CUDA['include'], 'src/cuda'])
# check for swig
if find_in_path('swig', os.environ['PATH']):
subprocess.check_call('swig -python -c++ -o src/cuda/swig_wrap.cpp src/cuda/gpuscatter.i', shell=True)
else:
raise EnvironmentError('the swig executable was not found in your PATH')
# ADD PACKAGES, MODULES TO metadata
#metadata['packages'] = [] # ['odin']
metadata['py_modules'] = []
metadata['package_dir'] = {} #{'': 'src/python'}
metadata['ext_modules'] = []
metadata['scripts'] = [s for s in glob('scripts/*') if not s.endswith('__.py')]
metadata['configuration'] = configuration
# if we have a CUDA-enabled GPU...
if CUDA:
metadata['package_dir'][''] = 'src/cuda'
metadata['py_modules'].append('gpuscatter')
metadata['ext_modules'].append(gpuscatter)
# inject our custom trigger
metadata['cmdclass'] = {'build_ext': custom_build_ext}
if __name__ == '__main__':
write_version_py()
setup(**metadata)