-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
329 lines (298 loc) · 13.6 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
try:
from setuptools import setup
from setuptools.extension import Extension
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
import numpy as np
from Cython.Distutils import build_ext
import sys, os, subprocess, warnings, re
from sys import platform
from os import environ
found_omp = True
def set_omp_false():
global found_omp
found_omp = False
## Modify this to make the output of the compilation tests more verbose
silent_tests = not (("verbose" in sys.argv)
or ("-verbose" in sys.argv)
or ("--verbose" in sys.argv))
## Workaround for python<=3.9 on windows
try:
EXIT_SUCCESS = os.EX_OK
except AttributeError:
EXIT_SUCCESS = 0
## For debugging
if "--asan" in sys.argv:
ADD_ASAN = True
sys.argv.remove("--asan")
else:
ADD_ASAN = False
if "--ggdb" in sys.argv:
ADD_GGDB = True
sys.argv.remove("--ggdb")
else:
ADD_GGDB = False
## https://stackoverflow.com/questions/724664/python-distutils-how-to-get-a-compiler-that-is-going-to-be-used
class build_ext_subclass( build_ext ):
def build_extensions(self):
is_msvc = self.compiler.compiler_type == "msvc"
is_clang = hasattr(self.compiler, 'compiler_cxx') and ("clang++" in self.compiler.compiler_cxx)
is_windows = sys.platform[:3] == "win"
is_mingw = (is_windows and
(self.compiler.compiler_type.lower()
in ["mingw32", "mingw64", "mingw", "msys", "msys2", "gcc", "g++"]))
if not is_msvc:
if not self.check_for_variable_dont_set_march() and not self.check_cflags_contain_arch():
self.add_march_native()
self.add_openmp_linkage()
self.add_restrict_qualifier()
self.add_no_math_errno()
self.add_no_trapping_math()
if sys.platform[:3].lower() != "win":
self.add_link_time_optimization()
if is_msvc:
for e in self.extensions:
e.extra_compile_args += ['/openmp', '/O2', '/GL', '/std:c++14', '/fp:except-', '/wd4267', '/wd4018']
### Note: MSVC never implemented C++11
elif is_clang:
for e in self.extensions:
e.extra_compile_args += ['-O2', '-std=c++17']
### Note: when passing C++11 to CLANG, it complains about C++17 features in CYTHON_FALLTHROUGH
else: # gcc
self.add_O2()
self.add_std_cpp11()
for e in self.extensions:
if is_mingw:
e.extra_compile_args += ['-Wno-sign-compare', '-Wno-maybe-uninitialized']
### for extra testing
# e.define_macros += [("TEST_MODE_DEFINE", None)]
if ADD_ASAN and not is_msvc:
# run this with `LD_PRELOAD=libasan.so python script.py`
for e in self.extensions:
if not is_clang:
e.extra_compile_args += ["-fsanitize=address", "-static-libasan", "-ggdb"]
else:
e.extra_compile_args += ["-fsanitize=address", "-static-libsan", "-ggdb"]
elif ADD_GGDB and not is_msvc:
for e in self.extensions:
e.extra_compile_args += ["-ggdb"]
build_ext.build_extensions(self)
def check_cflags_contain_arch(self):
if ("CFLAGS" in os.environ) or ("CXXFLAGS" in os.environ):
has_cflags = "CFLAGS" in os.environ
has_cxxflags = "CXXFLAGS" in os.environ
arch_list = [
"-march", "-mcpu", "-mtune", "-msse", "-msse2", "-msse3",
"-mssse3", "-msse4", "-msse4a", "-msse4.1", "-msse4.2",
"-mavx", "-mavx2", "-mavx512"
]
for flag in arch_list:
if has_cflags and flag in os.environ["CFLAGS"]:
return True
if has_cxxflags and flag in os.environ["CXXFLAGS"]:
return True
return False
def check_for_variable_dont_set_march(self):
return "DONT_SET_MARCH" in os.environ
def add_march_native(self):
is_apple = sys.platform[:3].lower() == "dar"
args_march_native = ["-march=native", "-mcpu=native"]
for arg_march_native in args_march_native:
if self.test_supports_compile_arg(arg_march_native, with_c_comp=is_apple):
for e in self.extensions:
e.extra_compile_args.append(arg_march_native)
break
def add_link_time_optimization(self):
args_lto = ["-flto=auto", "-flto"]
for arg_lto in args_lto:
if self.test_supports_compile_arg(arg_lto):
for e in self.extensions:
e.extra_compile_args.append(arg_lto)
e.extra_link_args.append(arg_lto)
break
def add_no_math_errno(self):
arg_fnme = "-fno-math-errno"
if self.test_supports_compile_arg(arg_fnme):
for e in self.extensions:
e.extra_compile_args.append(arg_fnme)
e.extra_link_args.append(arg_fnme)
def add_no_trapping_math(self):
arg_fntm = "-fno-trapping-math"
if self.test_supports_compile_arg(arg_fntm):
for e in self.extensions:
e.extra_compile_args.append(arg_fntm)
e.extra_link_args.append(arg_fntm)
def add_O2(self):
arg_O2 = "-O2"
if self.test_supports_compile_arg(arg_O2):
for e in self.extensions:
e.extra_compile_args.append(arg_O2)
e.extra_link_args.append(arg_O2)
def add_std_cpp11(self):
arg_std_cpp11 = "-std=c++11"
if self.test_supports_compile_arg(arg_std_cpp11):
for e in self.extensions:
e.extra_compile_args.append(arg_std_cpp11)
e.extra_link_args.append(arg_std_cpp11)
def add_openmp_linkage(self):
arg_omp1 = "-fopenmp"
arg_omp2 = "-fopenmp=libomp"
args_omp3 = ["-fopenmp=libomp", "-lomp"]
arg_omp4 = "-qopenmp"
arg_omp5 = "-xopenmp"
is_apple = sys.platform[:3].lower() == "dar"
args_apple_omp = ["-Xclang", "-fopenmp", "-lomp"]
args_apple_omp2 = ["-Xclang", "-fopenmp", "-L/usr/local/lib", "-lomp", "-I/usr/local/include"]
has_brew_omp = False
if is_apple:
try:
res_brew_pref = subprocess.run(["brew", "--prefix", "libomp"], capture_output=True)
if res_brew_pref.returncode == EXIT_SUCCESS:
brew_omp_prefix = res_brew_pref.stdout.decode().strip()
args_apple_omp3 = ["-Xclang", "-fopenmp", f"-L{brew_omp_prefix}/lib", "-lomp", f"-I{brew_omp_prefix}/include"]
has_brew_omp = True
except Exception as e:
pass
if self.test_supports_compile_arg(arg_omp1, with_omp=True):
for e in self.extensions:
e.extra_compile_args.append(arg_omp1)
e.extra_link_args.append(arg_omp1)
elif is_apple and self.test_supports_compile_arg(args_apple_omp, with_omp=True):
for e in self.extensions:
e.extra_compile_args += ["-Xclang", "-fopenmp"]
e.extra_link_args += ["-lomp"]
elif is_apple and self.test_supports_compile_arg(args_apple_omp2, with_omp=True):
for e in self.extensions:
e.extra_compile_args += ["-Xclang", "-fopenmp"]
e.extra_link_args += ["-L/usr/local/lib", "-lomp"]
e.include_dirs += ["/usr/local/include"]
elif is_apple and has_brew_omp and self.test_supports_compile_arg(args_apple_omp3, with_omp=True):
for e in self.extensions:
e.extra_compile_args += ["-Xclang", "-fopenmp"]
e.extra_link_args += [f"-L{brew_omp_prefix}/lib", "-lomp"]
e.include_dirs += [f"{brew_omp_prefix}/include"]
elif self.test_supports_compile_arg(arg_omp2, with_omp=True):
for e in self.extensions:
e.extra_compile_args += ["-fopenmp=libomp"]
e.extra_link_args += ["-fopenmp"]
elif self.test_supports_compile_arg(args_omp3, with_omp=True):
for e in self.extensions:
e.extra_compile_args += ["-fopenmp=libomp"]
e.extra_link_args += ["-fopenmp", "-lomp"]
elif self.test_supports_compile_arg(arg_omp4, with_omp=True):
for e in self.extensions:
e.extra_compile_args.append(arg_omp4)
e.extra_link_args.append(arg_omp4)
elif self.test_supports_compile_arg(arg_omp5, with_omp=True):
for e in self.extensions:
e.extra_compile_args.append(arg_omp5)
e.extra_link_args.append(arg_omp5)
else:
set_omp_false()
# Note: in apple systems, it somehow might end up triggering the arguments with
# the C compiler instead of the CXX compiler. What's worse, sometimes this compiler
# thinks it's building for aarch64 even when executed in amd64.
def test_supports_compile_arg(self, comm, with_omp=False, with_c_comp=False):
is_supported = False
try:
if not hasattr(self.compiler, "compiler_cxx"):
return False
if not isinstance(comm, list):
comm = [comm]
print("--- Checking compiler support for option '%s'" % " ".join(comm))
fname = "outliertreetree_compiler_testing.cpp"
with open(fname, "w") as ftest:
ftest.write(u"int main(int argc, char**argv) {return 0;}\n")
try:
if not isinstance(self.compiler.compiler_cxx, list):
cmd = list(self.compiler.compiler_cxx)
else:
cmd = self.compiler.compiler_cxx
except Exception:
cmd = self.compiler.compiler_cxx
if with_c_comp:
if not isinstance(self.compiler.compiler, list):
cmd0 = list(self.compiler.compiler)
else:
cmd0 = self.compiler.compiler
if with_omp:
with open(fname, "w") as ftest:
ftest.write(u"#include <omp.h>\nint main(int argc, char**argv) {return 0;}\n")
try:
val = subprocess.run(cmd + comm + [fname], capture_output=silent_tests).returncode
is_supported = (val == EXIT_SUCCESS)
if is_supported and with_c_comp:
val = subprocess.run(cmd0 + comm + [fname], capture_output=silent_tests).returncode
is_supported = (val == EXIT_SUCCESS)
except Exception:
is_supported = False
except Exception:
pass
try:
os.remove(fname)
except Exception:
pass
return is_supported
def add_restrict_qualifier(self):
supports_restrict = False
try:
if not hasattr(self.compiler, "compiler_cxx"):
return None
print("--- Checking compiler support for '__restrict' qualifier")
fname = "outliertree_compiler_testing.cpp"
with open(fname, "w") as ftest:
ftest.write(u"int main(int argc, char**argv) {return 0;}\n")
try:
if not isinstance(self.compiler.compiler_cxx, list):
cmd = list(self.compiler.compiler_cxx)
else:
cmd = self.compiler.compiler_cxx
except Exception:
cmd = self.compiler.compiler_cxx
try:
with open(fname, "w") as ftest:
ftest.write(u"int main(int argc, char**argv) {double *__restrict x = 0; return 0;}\n")
val = subprocess.run(cmd + comm + [fname], capture_output=silent_tests).returncode
is_supported = (val == EXIT_SUCCESS)
except Exception:
return None
except Exception:
pass
try:
os.remove(fname)
except Exception:
pass
if supports_restrict:
for e in self.extensions:
e.define_macros += [("SUPPORTS_RESTRICT", "1")]
setup(
name = "outliertree",
packages = ["outliertree"],
version = '1.10.0',
description = 'Explainable outlier detection through smart decision tree conditioning',
author = 'David Cortes',
url = 'https://github.com/david-cortes/outliertree',
keywords = ['outlier', 'anomaly', 'gritbot'],
cmdclass = {'build_ext': build_ext_subclass},
ext_modules = [Extension(
"outliertree._outlier_cpp_interface",
sources=["outliertree/outlier_cpp_interface.pyx", "src/split.cpp", "src/cat_outlier.cpp",
"src/fit_model.cpp", "src/clusters.cpp", "src/misc.cpp", "src/predict.cpp"],
include_dirs=[np.get_include(), ".", "./src"],
define_macros=[
("_FOR_PYTHON", None),
("NDEBUG", None),
],
language="c++",
)]
)
if not found_omp:
omp_msg = "\n\n\nCould not detect OpenMP. Package will be built without multi-threading capabilities. "
omp_msg += " To enable multi-threading, first install OpenMP"
if (sys.platform[:3] == "dar"):
omp_msg += " - for macOS: 'brew install libomp'\n"
else:
omp_msg += " modules for your compiler. "
omp_msg += "Then reinstall this package from scratch: 'pip install --upgrade --no-deps --force-reinstall outliertree'.\n"
warnings.warn(omp_msg)