forked from NVIDIA/nvtx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_utils.py
776 lines (583 loc) · 26 KB
/
setup_utils.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
# ! /usr/bin/python
# -*- coding: utf-8 -*-
# Code Inspired by: https://github.com/horovod/horovod/blob/master/setup.py
#
# Copyright 2019 Uber Technologies, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
#
# Modified by NVIDIA to fit our requirements
#
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function
import os
import re
import subprocess
import sys
import textwrap
import traceback
from contextlib import contextmanager
from distutils.errors import CompileError
from distutils.errors import DistutilsError
from distutils.errors import DistutilsPlatformError
from distutils.errors import LinkError
from distutils.sysconfig import customize_compiler
from distutils.version import LooseVersion
from setuptools.command.build_ext import build_ext
__all__ = ["custom_build_ext"]
# determining if the system has cmake installed
try:
subprocess.check_output(['cmake', '--version'])
have_cmake = True
except (FileNotFoundError, subprocess.CalledProcessError):
have_cmake = False
def check_tf_version():
try:
import tensorflow as tf
if LooseVersion(tf.__version__) < LooseVersion('1.1.0'):
raise DistutilsPlatformError(
'Your TensorFlow version %s is outdated. '
'NVTX Plugins requires tensorflow>=1.1.0' % tf.__version__
)
except ImportError:
raise DistutilsPlatformError(
'import tensorflow failed, is it installed?\n\n%s' % traceback.format_exc()
)
except AttributeError:
# This means that tf.__version__ was not exposed, which makes it *REALLY* old.
raise DistutilsPlatformError(
'Your TensorFlow version is outdated. NVTX Plugins requires tensorflow>=1.1.0'
)
def build_cmake(build_ext, ext, prefix, plugin_ext=None, options=None):
cmake_bin = 'cmake'
# All statically linked libraries will be placed here
lib_output_dir = os.path.abspath(os.path.join(build_ext.build_temp, 'lib', prefix))
if not os.path.exists(lib_output_dir):
os.makedirs(lib_output_dir)
if plugin_ext:
plugin_ext.library_dirs += [lib_output_dir]
if options:
options['LIBRARY_DIRS'] += [lib_output_dir]
extdir = os.path.abspath(os.path.dirname(build_ext.get_ext_fullpath(ext.name)))
# config = 'Debug' if build_ext.debug else 'Release'
config = 'Release'
cmake_args = [
'-DCMAKE_BUILD_TYPE=' + config,
'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(config.upper(), extdir),
'-DCMAKE_ARCHIVE_OUTPUT_DIRECTORY_{}={}'.format(config.upper(),
lib_output_dir),
]
cmake_build_args = [
'--config', config,
'--', '-j4',
]
# Keep temp build files within a unique subdirectory
build_temp = os.path.abspath(os.path.join(build_ext.build_temp, ext.name))
if not os.path.exists(build_temp):
os.makedirs(build_temp)
# Config and build the extension
try:
subprocess.check_call([cmake_bin, ext.cmake_lists_dir] + cmake_args, cwd=build_temp)
subprocess.check_call([cmake_bin, '--build', '.'] + cmake_build_args, cwd=build_temp)
except OSError as e:
raise RuntimeError('CMake failed: {}'.format(str(e)))
# Add the library so the plugin will link against it during compilation
if plugin_ext:
plugin_ext.libraries += [ext.name]
if options:
options['LIBRARIES'] += [ext.name]
def remove_offensive_gcc_compiler_options(compiler_version):
offensive_replacements = dict()
if compiler_version < LooseVersion('4.9'):
offensive_replacements = {
'-Wdate-time': '',
'-fstack-protector-strong': '-fstack-protector'
}
if offensive_replacements:
from sysconfig import get_config_var
cflags = get_config_var('CONFIGURE_CFLAGS')
cppflags = get_config_var('CONFIGURE_CPPFLAGS')
ldshared = get_config_var('LDSHARED')
for k, v in offensive_replacements.items():
cflags = cflags.replace(k, v)
cppflags = cppflags.replace(k, v)
ldshared = ldshared.replace(k, v)
return cflags, cppflags, ldshared
# Use defaults
return None, None, None
# def check_avx_supported():
# try:
# flags_output = subprocess.check_output(
# 'gcc -march=native -E -v - </dev/null 2>&1 | grep cc1',
# shell=True, universal_newlines=True).strip()
# flags = shlex.split(flags_output)
# return '+f16c' in flags and '+avx' in flags
# except subprocess.CalledProcessError:
# # Fallback to non-AVX if were not able to get flag information.
# return False
def get_cpp_flags(build_ext):
last_err = None
default_flags = ['-std=c++11', '-fPIC', '-O2', '-Wall']
# avx_flags = ['-mf16c', '-mavx'] if check_avx_supported() else []
avx_flags = []
flags_to_try = [
default_flags,
default_flags + ['-stdlib=libc++']
]
if avx_flags:
flags_to_try.append(default_flags + avx_flags)
flags_to_try.append(default_flags + ['-stdlib=libc++'] + avx_flags)
for cpp_flags in flags_to_try:
try:
test_compile(
build_ext, 'test_cpp_flags',
extra_compile_preargs=cpp_flags,
code=textwrap.dedent(
'''\
#include <unordered_map>
void test() {
}
'''
)
)
return cpp_flags
except (CompileError, LinkError):
last_err = 'Unable to determine C++ compilation flags (see error above).'
except Exception:
last_err = 'Unable to determine C++ compilation flags. ' \
'Last error:\n\n%s' % traceback.format_exc()
raise DistutilsPlatformError(last_err)
def get_link_flags(build_ext):
last_err = None
libtool_flags = ['-Wl,-exported_symbols_list']
ld_flags = []
flags_to_try = [ld_flags, libtool_flags]
for link_flags in flags_to_try:
try:
test_compile(build_ext, 'test_link_flags',
extra_link_preargs=link_flags,
code=textwrap.dedent('''\
void test() {
}
'''))
return link_flags
except (CompileError, LinkError):
last_err = 'Unable to determine C++ link flags (see error above).'
except Exception:
last_err = 'Unable to determine C++ link flags. ' \
'Last error:\n\n%s' % traceback.format_exc()
raise DistutilsPlatformError(last_err)
def get_cuda_dirs(build_ext, cpp_flags):
cuda_include_dirs = []
cuda_lib_dirs = []
cuda_home = os.environ.get('CUDA_HOME')
cuda_lib = os.environ.get('CUDA_LIB')
cuda_include = os.environ.get('CUDA_INCLUDE')
if cuda_home and os.path.exists(cuda_home):
for _dir in ['%s/include' % cuda_home]:
if os.path.exists(_dir):
cuda_include_dirs.append(_dir)
for _dir in ['%s/lib' % cuda_home, '%s/lib64' % cuda_home]:
if os.path.exists(_dir):
cuda_lib_dirs.append(_dir)
if cuda_include and os.path.exists(cuda_include) and cuda_include not in cuda_include_dirs:
cuda_include_dirs.append(cuda_include)
if cuda_lib and os.path.exists(cuda_lib) and cuda_lib not in cuda_lib_dirs:
cuda_lib_dirs.append(cuda_lib)
if not cuda_include_dirs and not cuda_lib_dirs:
# default to /usr/local/cuda
cuda_include_dirs += ['/usr/local/cuda/include']
cuda_lib_dirs += ['/usr/local/cuda/lib', '/usr/local/cuda/lib64']
try:
test_compile(
build_ext,
'test_cuda',
libraries=['cudart'],
include_dirs=cuda_include_dirs,
library_dirs=cuda_lib_dirs,
extra_compile_preargs=cpp_flags,
code=textwrap.dedent(
'''\
#include <cuda_runtime.h>
void test() {
cudaSetDevice(0);
}
'''
)
)
except (CompileError, LinkError):
raise DistutilsPlatformError(
'CUDA library was not found (see error above).\n'
'Please specify correct CUDA location with the CUDA_HOME '
'environment variable or combination of CUDA_INCLUDE and '
'CUDA_LIB environment variables.\n\n'
'CUDA_HOME - path where CUDA include and lib directories can be found\n'
'CUDA_INCLUDE - path to CUDA include directory\n'
'CUDA_LIB - path to CUDA lib directory'
)
return cuda_include_dirs, cuda_lib_dirs
def get_common_options(build_ext):
cpp_flags = get_cpp_flags(build_ext)
link_flags = get_link_flags(build_ext)
have_cuda = True
MACROS = []
INCLUDES = []
SOURCES = []
COMPILE_FLAGS = cpp_flags
LINK_FLAGS = link_flags
LIBRARY_DIRS = []
LIBRARIES = []
if have_cuda:
cuda_include_dirs, cuda_lib_dirs = get_cuda_dirs(build_ext, cpp_flags)
MACROS += [('HAVE_CUDA', '1')]
INCLUDES += cuda_include_dirs
LIBRARY_DIRS += cuda_lib_dirs
LIBRARIES += ['cudart']
return dict(
MACROS=MACROS,
INCLUDES=INCLUDES,
SOURCES=SOURCES,
COMPILE_FLAGS=COMPILE_FLAGS,
LINK_FLAGS=LINK_FLAGS,
LIBRARY_DIRS=LIBRARY_DIRS,
LIBRARIES=LIBRARIES
)
# run the customize_compiler
class custom_build_ext(build_ext):
def __init__(self, dist, tf_libs):
if isinstance(tf_libs, (list, tuple)):
self._tf_libs = tf_libs
else:
self._tf_libs = [tf_libs]
super(custom_build_ext, self).__init__(dist)
def build_extensions(self):
options = get_common_options(self)
built_plugins = []
for extension in self._tf_libs:
try:
build_tf_extension(self, extension, options)
built_plugins.append(True)
except:
print("===========================================================================================")
print(
'INFO: Unable to build TensorFlow plugin, will skip it.\n\n%s' % traceback.format_exc(),
file=sys.stderr
)
print("===========================================================================================")
built_plugins.append(False)
if not built_plugins[-1]:
raise DistutilsError('TensorFlow plugin: `%s` failed to build. Aborting.' % extension.name)
if not any(built_plugins):
raise DistutilsError('No plugin was built. See errors above.')
def build_tf_extension(build_ext, tf_lib, options):
check_tf_version()
tf_compile_flags, tf_link_flags = get_tf_flags(build_ext, options['COMPILE_FLAGS'])
tf_lib.define_macros = options['MACROS'] + tf_lib.define_macros
tf_lib.include_dirs = options['INCLUDES'] + tf_lib.include_dirs
tf_lib.sources = options['SOURCES'] + tf_lib.sources
tf_lib.extra_compile_args = options['COMPILE_FLAGS'] + tf_compile_flags + tf_lib.extra_compile_args
tf_lib.extra_link_args = options['LINK_FLAGS'] + tf_link_flags + tf_lib.extra_link_args
tf_lib.library_dirs = options['LIBRARY_DIRS'] + tf_lib.library_dirs
tf_lib.libraries = options['LIBRARIES'] + tf_lib.libraries
cc_compiler = cxx_compiler = None
if not sys.platform.startswith('linux'):
raise EnvironmentError("Only Linux Systems are supported")
if not os.getenv('CC') and not os.getenv('CXX'):
# Determine g++ version compatible with this TensorFlow installation
import tensorflow as tf
if hasattr(tf, 'version'):
# Since TensorFlow 1.13.0
tf_compiler_version = LooseVersion(tf.version.COMPILER_VERSION)
else:
tf_compiler_version = LooseVersion(tf.COMPILER_VERSION)
if tf_compiler_version.version[0] == 4:
# g++ 4.x is ABI-incompatible with g++ 5.x+ due to std::function change
# See: https://github.com/tensorflow/tensorflow/issues/27067
maximum_compiler_version = LooseVersion('5')
else:
maximum_compiler_version = LooseVersion('999')
# Find the compatible compiler of the highest version
compiler_version = LooseVersion('0')
for candidate_cxx_compiler, candidate_compiler_version in find_gxx_compiler_in_path():
if tf_compiler_version <= candidate_compiler_version < maximum_compiler_version:
candidate_cc_compiler = find_matching_gcc_compiler_in_path(candidate_compiler_version)
if candidate_cc_compiler and candidate_compiler_version > compiler_version:
cc_compiler = candidate_cc_compiler
cxx_compiler = candidate_cxx_compiler
compiler_version = candidate_compiler_version
else:
print("===========================================================================================")
print(
'INFO: Compiler %s (version %s) is not usable for this TensorFlow '
'installation. Require g++ (version >=%s, <%s).' %
(candidate_cxx_compiler, candidate_compiler_version, tf_compiler_version, maximum_compiler_version)
)
print("===========================================================================================")
if cc_compiler:
print("===========================================================================================")
print('INFO: Compilers %s and %s (version %s) selected for TensorFlow plugin build.' % (
cc_compiler, cxx_compiler, compiler_version
))
print("===========================================================================================")
else:
raise DistutilsPlatformError(
'Could not find compiler compatible with this TensorFlow installation.\n'
'Please check the NVTX-Plugins Github Repository for recommended compiler versions.\n'
'To force a specific compiler version, set CC and CXX environment variables.'
)
cflags, cppflags, ldshared = remove_offensive_gcc_compiler_options(compiler_version)
try:
with env(CC=cc_compiler, CXX=cxx_compiler, CFLAGS=cflags, CPPFLAGS=cppflags, LDSHARED=ldshared):
customize_compiler(build_ext.compiler)
try:
build_ext.compiler.compiler.remove("-DNDEBUG")
except (AttributeError, ValueError):
pass
try:
build_ext.compiler.compiler_so.remove("-DNDEBUG")
except (AttributeError, ValueError):
pass
try:
build_ext.compiler.compiler_so.remove("-Wstrict-prototypes")
except (AttributeError, ValueError):
pass
try:
build_ext.compiler.linker_so.remove("-Wl,-O1")
except (AttributeError, ValueError):
pass
build_ext.build_extension(tf_lib)
finally:
# Revert to the default compiler settings
customize_compiler(build_ext.compiler)
@contextmanager
def env(**kwargs):
# ignore args with None values
for k in list(kwargs.keys()):
if kwargs[k] is None:
del kwargs[k]
# backup environment
backup = {}
for k in kwargs.keys():
backup[k] = os.environ.get(k)
# set new values & yield
for k, v in kwargs.items():
os.environ[k] = v
try:
yield
finally:
# restore environment
for k in kwargs.keys():
if backup[k] is not None:
os.environ[k] = backup[k]
else:
del os.environ[k]
def get_tf_include_dirs():
import tensorflow as tf
tf_inc = tf.sysconfig.get_include()
return [tf_inc, '%s/external/nsync/public' % tf_inc]
def get_tf_lib_dirs():
import tensorflow as tf
tf_lib = tf.sysconfig.get_lib()
return [tf_lib]
def test_compile(build_ext, name, code, libraries=None, include_dirs=None, library_dirs=None, macros=None,
extra_compile_preargs=None, extra_link_preargs=None):
test_compile_dir = os.path.join(build_ext.build_temp, 'test_compile')
if not os.path.exists(test_compile_dir):
os.makedirs(test_compile_dir)
source_file = os.path.join(test_compile_dir, '%s.cc' % name)
with open(source_file, 'w') as f:
f.write(code)
compiler = build_ext.compiler
[object_file] = compiler.object_filenames([source_file])
shared_object_file = compiler.shared_object_filename(name, output_dir=test_compile_dir)
try:
build_ext.compiler.compiler_so.remove("-Wstrict-prototypes")
except (AttributeError, ValueError):
pass
compiler.compile(
[source_file],
extra_preargs=extra_compile_preargs,
include_dirs=include_dirs,
macros=macros
)
compiler.link_shared_object(
[object_file],
shared_object_file,
libraries=libraries,
library_dirs=library_dirs,
extra_preargs=extra_link_preargs
)
return shared_object_file
def get_tf_libs(build_ext, lib_dirs, cpp_flags):
for tf_libs in [['tensorflow_framework'], []]:
try:
lib_file = test_compile(
build_ext,
'test_tensorflow_libs',
library_dirs=lib_dirs,
libraries=tf_libs,
extra_compile_preargs=cpp_flags,
code=textwrap.dedent('''\
void test() {
}
'''))
from tensorflow.python.framework import load_library
load_library.load_op_library(lib_file)
return tf_libs
except (CompileError, LinkError):
last_err = 'Unable to determine -l link flags to use with TensorFlow (see error above).'
except Exception:
last_err = 'Unable to determine -l link flags to use with TensorFlow. Last error:\n\n%s' % \
traceback.format_exc()
raise DistutilsPlatformError(last_err)
def get_tf_abi(build_ext, include_dirs, lib_dirs, libs, cpp_flags):
cxx11_abi_macro = '_GLIBCXX_USE_CXX11_ABI'
for cxx11_abi in ['0', '1']:
try:
lib_file = test_compile(build_ext, 'test_tensorflow_abi',
macros=[(cxx11_abi_macro, cxx11_abi)],
include_dirs=include_dirs,
library_dirs=lib_dirs,
libraries=libs,
extra_compile_preargs=cpp_flags,
code=textwrap.dedent('''\
#include <string>
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/shape_inference.h"
void test() {
auto ignore = tensorflow::strings::StrCat("a", "b");
}
''')
)
from tensorflow.python.framework import load_library
load_library.load_op_library(lib_file)
return cxx11_abi_macro, cxx11_abi
except (CompileError, LinkError):
last_err = 'Unable to determine CXX11 ABI to use with TensorFlow (see error above).'
except Exception:
last_err = 'Unable to determine CXX11 ABI to use with TensorFlow. ' \
'Last error:\n\n%s' % traceback.format_exc()
raise DistutilsPlatformError(last_err)
def get_tf_flags(build_ext, cpp_flags):
import tensorflow as tf
try:
return tf.sysconfig.get_compile_flags(), tf.sysconfig.get_link_flags()
except AttributeError:
# fallback to the previous logic
tf_include_dirs = get_tf_include_dirs()
tf_lib_dirs = get_tf_lib_dirs()
tf_libs = get_tf_libs(build_ext, tf_lib_dirs, cpp_flags)
tf_abi = get_tf_abi(build_ext, tf_include_dirs,
tf_lib_dirs, tf_libs, cpp_flags)
compile_flags = []
for include_dir in tf_include_dirs:
compile_flags.append('-I%s' % include_dir)
if tf_abi:
compile_flags.append('-D%s=%s' % tf_abi)
link_flags = []
for lib_dir in tf_lib_dirs:
link_flags.append('-L%s' % lib_dir)
for lib in tf_libs:
link_flags.append('-l%s' % lib)
return compile_flags, link_flags
def determine_gcc_version(compiler):
try:
compiler_macros = subprocess.check_output(
'%s -dM -E - </dev/null' % compiler,
shell=True,
universal_newlines=True
).split('\n')
for m in compiler_macros:
version_match = re.match('^#define __VERSION__ "(.*?)"$', m)
if version_match:
return LooseVersion(version_match.group(1))
print("===========================================================================================")
print('INFO: Unable to determine version of the gcc compiler %s.' % compiler)
print("===========================================================================================")
except subprocess.CalledProcessError:
print("===========================================================================================")
print('INFO: Unable to determine version of the gcc compiler %s.\n%s' % (compiler, traceback.format_exc()))
print("===========================================================================================")
return None
def determine_nvcc_version(compiler):
try:
nvcc_macros = [
_l for _l in subprocess.check_output(
'%s --version </dev/null' % compiler,
shell=True,
universal_newlines=True
).split('\n')
if _l != ''
][-1]
nvcc_version = nvcc_macros.split(", ")[-1][1:]
return LooseVersion(nvcc_version)
except subprocess.CalledProcessError:
print("===========================================================================================")
print('INFO: Unable to determine version of the nvcc compiler %s.\n%s' % (compiler, traceback.format_exc()))
print("===========================================================================================")
return None
def enumerate_binaries_in_path():
for path_dir in os.getenv('PATH', '').split(':'):
if os.path.isdir(path_dir):
for bin_file in sorted(os.listdir(path_dir)):
yield path_dir, bin_file
def find_matching_gcc_compiler_in_path(gxx_compiler_version):
for path_dir, bin_file in enumerate_binaries_in_path():
if re.match('^gcc(?:-\\d+(?:\\.\\d+)*)?$', bin_file):
# gcc, or gcc-7, gcc-4.9, or gcc-4.8.5
compiler = os.path.join(path_dir, bin_file)
compiler_version = determine_gcc_version(compiler)
if compiler_version == gxx_compiler_version:
return compiler
print("===========================================================================================")
print('INFO: Unable to find gcc compiler (version %s).' % gxx_compiler_version)
print("===========================================================================================")
return None
def find_gxx_compiler_in_path():
compilers = []
for path_dir, bin_file in enumerate_binaries_in_path():
if re.match('^g\\+\\+(?:-\\d+(?:\\.\\d+)*)?$', bin_file):
# g++, or g++-7, g++-4.9, or g++-4.8.5
compiler = os.path.join(path_dir, bin_file)
compiler_version = determine_gcc_version(compiler)
if compiler_version:
compilers.append((compiler, compiler_version))
if not compilers:
print("===========================================================================================")
print('INFO: Unable to find any gxx compiler.')
print("===========================================================================================")
return compilers
def find_nvcc_compiler_in_path():
for path_dir, bin_file in enumerate_binaries_in_path():
if bin_file == 'nvcc':
compiler = os.path.join(path_dir, bin_file)
compiler_version = determine_nvcc_version(compiler)
return compiler, compiler_version
else:
print("===========================================================================================")
print('INFO: Unable to find any nvcc compiler.')
print("===========================================================================================")