-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathsetup.py
More file actions
190 lines (158 loc) · 6.66 KB
/
setup.py
File metadata and controls
190 lines (158 loc) · 6.66 KB
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
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy, os, platform, sys
from os.path import join as pjoin
# 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 check_for_flag(flag_str, truemsg=False, falsemsg=False):
if flag_str in os.environ:
enabled = (os.environ[flag_str].lower() == "on")
else:
enabled = False
if enabled and not truemsg == False:
print(truemsg)
elif not enabled and not falsemsg == False:
print(falsemsg)
print(" $ sudo "+flag_str+"=ON python setup.py install")
return enabled
use_cuda = check_for_flag("WITH_CUDA", \
"Compiling with CUDA support", \
"Compiling without CUDA support. To enable CUDA use:")
trace = check_for_flag("TRACE", \
"Compiling with trace enabled for Bresenham's Line", \
"Compiling without trace enabled for Bresenham's Line. To enable trace use:")
print("")
print("--------------")
print("")
# support for compiling in clang
if platform.system().lower() == "darwin":
os.environ["MACOSX_DEPLOYMENT_TARGET"] = platform.mac_ver()[0]
os.environ["CC"] = "c++"
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
# export CUDAHOME=/usr/local/cuda
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.
"""
# print(os.environ)
# first check if the CUDAHOME env variable is in use
if os.path.isdir("/usr/local/cuda-7.5"):
home = "/usr/local/cuda-7.5"
nvcc = pjoin(home, 'bin', 'nvcc')
elif os.path.isdir("/usr/local/cuda"):
home = "/usr/local/cuda"
nvcc = pjoin(home, 'bin', 'nvcc')
elif '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:
raise EnvironmentError('The nvcc binary could not be '
'located in your $PATH. Either add it to your path, or set $CUDAHOME')
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):
raise EnvironmentError('The CUDA %s path could not be located in %s' % (k, v))
return cudaconfig
##################### Configuration ############################
# compiler_flags = ["-w","-std=c++11", "-march=native", "-ffast-math", "-fno-math-errno"]
compiler_flags = ["-w","-std=c++11", "-march=native", "-ffast-math", "-fno-math-errno", "-O3"]
nvcc_flags = ['-arch=sm_20', '--ptxas-options=-v', '-c', '--compiler-options', "'-fPIC'", "-w","-std=c++11"]
include_dirs = ["../", numpy_include]
depends = ["../includes/*.h"]
sources = ["RangeLibc.pyx","../vendor/lodepng/lodepng.cpp"]
CHUNK_SIZE = "262144"
NUM_THREADS = "256"
if use_cuda:
compiler_flags.append("-DUSE_CUDA=1"); nvcc_flags.append("-DUSE_CUDA=1")
compiler_flags.append("-DCHUNK_SIZE="+CHUNK_SIZE); nvcc_flags.append("-DCHUNK_SIZE="+CHUNK_SIZE)
compiler_flags.append("-DNUM_THREADS="+NUM_THREADS); nvcc_flags.append("-DNUM_THREADS="+NUM_THREADS)
CUDA = locate_cuda()
include_dirs.append(CUDA['include'])
sources.append("../includes/kernels.cu")
if trace:
compiler_flags.append("-D_MAKE_TRACE_MAP=1")
##################################################################
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']
# 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
class custom_build_ext(build_ext):
def build_extensions(self):
customize_compiler_for_nvcc(self.compiler)
build_ext.build_extensions(self)
if use_cuda:
ext = Extension("range_libc", sources,
extra_compile_args = {'gcc': compiler_flags, 'nvcc': nvcc_flags},
extra_link_args = ["-std=c++11"],
include_dirs = include_dirs,
library_dirs=[CUDA['lib64']],
libraries=['cudart'],
runtime_library_dirs=[CUDA['lib64']],
depends=depends,
language="c++",)
setup(name='range_libc',
author='Corey Walsh',
version='0.1',
ext_modules = [ext],
# inject our custom trigger
cmdclass={'build_ext': custom_build_ext})
else:
setup(ext_modules=[
Extension("range_libc", sources,
extra_compile_args = compiler_flags,
extra_link_args = ["-std=c++11"],
include_dirs = include_dirs,
depends=["../includes/*.h"],
language="c++",)],
name='range_libc',
author='Corey Walsh',
version='0.1',
cmdclass = {'build_ext': build_ext})