forked from cnpem/ssc-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
207 lines (155 loc) · 6.38 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from os.path import join as pjoin
import glob
from setuptools import setup, Extension, find_packages
from distutils.extension import Extension
from distutils.command.build_ext import build_ext
import sys
##########################################################
# Set Python package requirements for installation.
compile_cuda = 0
if '--cuda' in sys.argv:
compile_cuda = 1
sys.argv.remove('--cuda')
install_requires = [
'numpy>=1.7.0',
'scipy>=0.12.0',
]
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 ('The nvcc binary could not be '
'located in your $PATH. Either add it to your path, or set $CUDAHOME')
return None
home = os.path.dirname(os.path.dirname(nvcc))
check = pjoin(home, 'lib')
if not os.path.exists(check):
cudaconfig = {'home':home, 'nvcc':nvcc,
'include': pjoin(home, 'include'),
'lib': pjoin(home, 'lib64')}
else:
cudaconfig = {'home':home, 'nvcc':nvcc,
'include': pjoin(home, 'include'),
'lib': pjoin(home, 'lib')}
return cudaconfig
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
if compile_cuda:
CUDA = locate_cuda()
else:
CUDA = None
#if CUDA is None:
# sys.exit()
# enforce these same requirements at packaging time
import pkg_resources
for requirement in install_requires:
try:
pkg_resources.require(requirement)
except pkg_resources.DistributionNotFound:
msg = 'Python package requirement not satisfied: ' + requirement
msg += '\nsuggest using this command:'
msg += '\n\tpip install -U ' + requirement.split('=')[0].rstrip('>')
print (msg)
raise (pkg_resources.DistributionNotFound)
if CUDA:
pwd = os.getcwd()
resol = set( glob.glob('cuda/*.cu') )
resol_include = pwd + '/cuda/common/'
ext_resol = Extension(name='sscResolution.lib.libssc_resolution',
sources=list(resol),
library_dirs=[CUDA['lib']],
runtime_library_dirs=[CUDA['lib']],
extra_compile_args={'nvcc': ['-Xcompiler','-use_fast_math', '--ptxas-options=-v', '-c', '--compiler-options', '-fPIC']},
extra_link_args=['-std=c++14','-lm','-lcudart','-lpthread','-lcufft','-lcublas'],
include_dirs = [ CUDA['include'], resol_include ])
else:
#print('ssc-resolution error! compile with --cuda')
#sys.exit()
c_codes = set(glob.glob('c/*.c'))
ext_resol = Extension(name='sscGUI.lib.libssc_resolution',
sources=list(c_codes),
extra_compile_args={'gcc': ['-pedantic']},
extra_link_args=['-lm','-lpthread'])
def customize_compiler_for_nvcc(self):
"""inject deep into distutils to customize how the dispatch
to gcc/nvcc works. """
# 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
###########################
# Main setup configuration.
# run the customize_compiler
class custom_build_ext(build_ext):
def build_extensions(self):
customize_compiler_for_nvcc(self.compiler)
build_ext.build_extensions(self)
# Main setup configuration.
setup(
name='sscGUI',
version = open('VERSION').read().strip(),
packages = find_packages(),
include_package_data = True,
ext_modules=[ ext_resol ],
cmdclass={'build_ext': custom_build_ext},
zip_safe=False,
author=' Yuri R. Tonin ',
author_email='[email protected]',
description='Sirius Scientific Computing Interfaces',
keywords=['ptychography', 'tomography', 'imaging'],
url='http://www.',
download_url='',
license='BSD',
platforms='Any',
install_requires = install_requires,
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: C',
'Programming Language :: C++']
)