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 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
|
# Copyright (c) 2017-2023, University of Tennessee. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause
# This program is free software: you can redistribute it and/or modify it under
# the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
from __future__ import print_function
import os
import shlex
import subprocess
from subprocess import PIPE
import math
import sys
import time
import re
import tarfile
import argparse
import shutil
# This relative import syntax works in both python2 and 3.
from .ansicodes import font
# Python 3 renames raw_input => input.
if (sys.version_info.major < 3):
input = raw_input
#-------------------------------------------------------------------------------
def urlretrieve( url, filename ):
'''
Downloads url and saves to filename.
Works for both Python 2 and 3, which differ in where urlretrieve is located.
'''
if (sys.version_info.major >= 3):
import urllib.request as urllib_request
else:
import urllib as urllib_request
urllib_request.urlretrieve( url, filename )
# end
#-------------------------------------------------------------------------------
interactive_ = False
# Function to get and set interactive flag. If True, config finds all possible
# values and gives user a choice. If False, config picks the first valid value.
# value = interactive() returns value of interactive.
# interactive( value ) sets value of interactive.
# Making this a function config.interactive() avoids issues with the
# package __init__.py importing it if it were a variable.
def interactive( value=None ):
global interactive_
if (value is not None):
interactive_ = value
return interactive_
# end
# ------------------------------------------------------------------------------
debug_ = False
def debug( value=None ):
global debug_
if (value is not None):
debug_ = value
return debug_
# end
# ------------------------------------------------------------------------------
namespace_ = None
def namespace( value ):
return namespace_
def define( var, value=None ):
txt = '-D' + namespace_ + '_' + var
if (value):
txt += '=' + value
return txt
# ------------------------------------------------------------------------------
# variables to replace instead of appending/prepending
replace_vars = ['CC', 'CXX', 'NVCC', 'FC', 'AR', 'RANLIB', 'prefix']
# ------------------------------------------------------------------------------
# map file extensions to languages
lang_map = {
'.c': 'CC',
'.cc': 'CXX',
'.cxx': 'CXX',
'.cpp': 'CXX',
'.cu': 'NVCC',
'.f': 'FC',
'.f90': 'FC',
'.f77': 'FC',
'.F90': 'FC',
'.F77': 'FC',
}
# ------------------------------------------------------------------------------
# map languages to compiler flags
flag_map = {
'CC': 'CFLAGS',
'CXX': 'CXXFLAGS',
'NVCC': 'NVCCFLAGS',
'FC': 'FFLAGS',
}
# ------------------------------------------------------------------------------
def flatten( data, ltypes=(list, tuple) ):
'''
Flattens nested list or tuple.
Ex: flatten( [1, 2, [3, [4, 5], 6]] ) returns [1, 2, 3, 4, 5, 6]
see http://rightfootin.blogspot.com/2006/09/more-on-python-flatten.html
'''
ltype = type(data)
data = list(data)
i = 0
while i < len(data):
while isinstance(data[i], ltypes):
if not data[i]:
data.pop(i)
i -= 1
break
else:
data[i:i + 1] = data[i]
i += 1
return ltype(data)
# end
#-------------------------------------------------------------------------------
def get( dictionary, key ):
'''
Returns dictionary[ key ] or ''
'''
if (key in dictionary):
return dictionary[ key ]
else:
return ''
# end
#-------------------------------------------------------------------------------
def print_header( header ):
'''
Prints a header, with bold font, both to console and the log.
'''
txt = font.bold( header )
print( '\n' + '-'*80 +
'\n' + txt, file=log )
print( '\n' + txt )
# end
#-------------------------------------------------------------------------------
def print_subhead( subhead ):
'''
Prints a subhead, both to console and the log.
'''
print( '-'*40 + '\n' +
subhead, file=log )
print( subhead )
# end
#-------------------------------------------------------------------------------
def print_msg( msg ):
'''
Prints msg, both to console and the log.
'''
print( msg, file=log )
print( msg )
# end
#-------------------------------------------------------------------------------
def print_warn( msg ):
'''
Prints warning msg, with bold red font, both to console and the log.
'''
txt = font.bold( font.red( 'Warning: ' + msg ) )
print( txt, file=log )
print( txt )
# end
#-------------------------------------------------------------------------------
def print_test( label ):
'''
If label is given, prints the label, both to console and the log.
On the console, it doesn't print the trailing newline; a subsequent
print_result() will print it.
If no label is given, does nothing. This simplifies functions like
compile_obj that take an optional label to print.
'''
if (label):
print( '-'*20 + '\n' + label, file=log )
print( '%-72s' % label, end='' )
sys.stdout.flush()
# end
#-------------------------------------------------------------------------------
def print_result( label, rc, extra='' ):
'''
If label is given, prints either "yes" (if rc == 0) or "no" (otherwise).
Extra is printed after yes or no.
If no label is given, does nothing.
@see print_test().
'''
if (label):
if (rc == 0):
print( font.blue( 'yes' ), extra, file=log )
print( font.blue( ' yes' ), extra )
else:
print( font.red( 'no' ), extra, file=log )
print( font.red( ' no' ), extra )
# end
# ------------------------------------------------------------------------------
# Used for all errors.
# Allows Python Exceptions to fall through, giving tracebacks.
class Error( Exception ):
pass
class Quit( Error ):
pass
#-------------------------------------------------------------------------------
class Environments( object ):
'''
Manages stack of environments, which are dictionaries of name=value pairs.
'''
# ----------------------------------------
def __init__( self ):
'''
Initializes the environment stack.
The bottom is os.environ. The top is an empty environment.
'''
self.stack = [ os.environ, {} ]
# ----------------------------------------
def push( self, env=None ):
'''
Push an empty enviroment on the environment stack.
If env is given, also merge env into the environment stack.
'''
self.stack.append( {} )
if (env):
self.merge( env )
# ----------------------------------------
def top( self ):
'''
Return top-most environment in the environment stack.
'''
return self.stack[-1]
# ----------------------------------------
def pop( self ):
'''
Remove the top-most environment from the environment stack.
'''
if (len(self.stack) == 2):
raise Error( "can't pop last 2 environments" )
return self.stack.pop()
# ----------------------------------------
def __contains__( self, key ):
'''
Returns true if a key exists in the environment stack.
'''
for env in self.stack[::-1]:
if (key in env):
return True
return False
# ----------------------------------------
def __getitem__( self, key ):
'''
Returns the value of the key, searching from the top of the environment
stack down. As in a Makefile, unknown keys return empty string ('').
Use 'x in environ' to test whether a key exists.
'''
for env in self.stack[::-1]:
if (key in env):
return env[ key ]
return ''
# ----------------------------------------
def __setitem__( self, key, value ):
'''
Sets the key's value
in the top-most environment in the environment stack.
'''
self.stack[ -1 ][ key ] = value
# ----------------------------------------
def append( self, key, val ):
'''
Append val to key's value, saving the result
in the top-most environment in the enviornment stack.
'''
orig = self[ key ]
if (val):
if (orig):
val = orig + ' ' + val
self[ key ] = val
return orig
# ----------------------------------------
def prepend( self, key, val ):
'''
Prepend val to key's value, saving the result
in the top-most environment in the enviornment stack.
'''
orig = self[ key ]
if (val):
if (orig):
val = val + ' ' + orig
self[ key ] = val
return orig
# ----------------------------------------
def merge( self, env ):
'''
Merges env, a dictionary of environment variables, into the existing
environment stack. For most variables, the value in env is appended
to any existing value. For LIBS, the value is prepended.
For variables in config.replace_vars (like CXX), the value in env
replaces the existing value.
'''
for key in env:
if (key in replace_vars):
self[ key ] = env[ key ]
elif (key == 'LIBS'):
self.prepend( key, env[ key ] )
else:
self.append( key, env[ key ] )
# end
#-------------------------------------------------------------------------------
def choose( prompt, choices ):
'''
Asks the user to choose among the given choices.
Returns the index of the chosen item in the range [0, len(choices)-1],
or raises Error or Quit exceptions.
'''
choices = list( choices )
n = len( choices )
if (n == 0):
print( font.bold( font.red( 'none found' ) ) )
raise Error
elif (n == 1):
##print()
return 0
else:
width = int( math.log10( n ) + 1 )
print( '\n' + prompt )
for i in range( n ):
print( '[%*d] %s' % (width, i+1, choices[i]) )
while (True):
print( 'Enter [1-%d] or quit: ' % (n), end='' )
sys.stdout.flush()
i = input()
if (i == 'q' or i == 'quit'):
raise Quit
try:
i = int( i )
except:
i = -1
if (i >= 1 and i <= len( choices )):
##print()
return i-1
# end
# end
# end
#-------------------------------------------------------------------------------
def run( cmd, env=None ):
'''
Runs the command cmd.
cmd can be a string or a nested list.
Pushes env beforehand and pops afterward.
stdout and stderr are written to the log.
Returns (return_code, stdout, stderr) from the command.
Ex: run( ['gcc', '-c', 'file.c'], {'CPATH': '/opt/include'} )
runs: gcc -c file.c
'''
environ.push( env )
if (not isinstance( cmd, str )):
cmd = ' '.join( flatten( cmd ))
print( '>>>', cmd, file=log )
cmd_list = shlex.split( cmd )
try:
proc = subprocess.Popen( cmd_list, stdout=PIPE, stderr=PIPE )
(stdout, stderr) = proc.communicate()
stdout = stdout.decode('utf-8')
stderr = stderr.decode('utf-8')
rc = proc.wait()
log.write( stdout )
if (stderr):
log.write( font.red( stderr ) )
print( 'exit status = %d' % rc, file=log )
except Exception as ex:
print( 'Exception:', str(ex), file=log )
rc = -1
stdout = ''
stderr = str(ex)
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
def compile_obj( src, env=None, label=None ):
'''
Compiles source file src into an object (.o) file.
Pushes env beforehand and pops afterwards.
If label is given, prints label & result.
Returns (return_code, stdout, stderr) from the compiler.
Ex: compile_obj( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
runs: gcc $CFLAGS -c foo.c -o foo.o
'''
environ.push( env )
print_test( label )
(base, ext) = os.path.splitext( src )
obj = base + '.o'
lang = lang_map[ ext ]
compiler = environ[ lang ]
flags = environ[ flag_map[ lang ]]
(rc, stdout, stderr) = run([ compiler, flags, '-c', src, '-o', obj ])
print_result( label, rc )
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
def link_exe( src, env=None, label=None ):
'''
Links the object file (.o) associated with the source file src into an executable.
Assumes compile_obj( src ) was called previously to generate the object file.
Pushes env beforehand and pops afterward.
If label is given, prints label & result.
Returns (return_code, stdout, stderr) from the compiler.
Ex: link_exe( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
runs: gcc $LDFLAGS $LIBS foo.o -o foo
'''
environ.push( env )
print_test( label )
(base, ext) = os.path.splitext( src )
obj = base + '.o'
lang = lang_map[ ext ]
compiler = environ[ lang ]
LDFLAGS = environ['LDFLAGS']
LIBS = environ['LIBS'] or environ['LDLIBS']
(rc, stdout, stderr) = run([ compiler, obj, '-o', base, LDFLAGS, LIBS ])
print_result( label, rc )
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
def compile_exe( src, env=None, label=None ):
'''
Compiles source file src into an object file via compile_obj(),
then links it into an exe.
Ex: compile_exe( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
runs: gcc $CFLAGS -c foo.c -o foo.o
gcc $LDFLAGS $LIBS foo.o -o foo
'''
environ.push( env )
print_test( label )
(base, ext) = os.path.splitext( src )
obj = base + '.o'
lang = lang_map[ ext ]
compiler = environ[ lang ]
LDFLAGS = environ['LDFLAGS']
LIBS = environ['LIBS'] or environ['LDLIBS']
(rc, stdout, stderr) = compile_obj( src )
if (rc == 0):
(rc, stdout, stderr) = run([ compiler, obj, '-o', base, LDFLAGS, LIBS ])
print_result( label, rc )
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
# Ex:
# compile_run( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
def compile_run( src, env=None, label=None ):
'''
Compiles source file src into an object file and exe via compile_exe(),
then executes the exe.
Ex: compile_exe( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
runs: gcc $CFLAGS -c foo.c -o foo.o
gcc $LDFLAGS $LIBS foo.o -o foo
./foo
'''
environ.push( env )
print_test( label )
(base, ext) = os.path.splitext( src )
(rc, stdout, stderr) = compile_exe( src )
if (rc == 0):
(rc, stdout, stderr) = run( './' + base )
print_result( label, rc )
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
def run_exe( src, env=None, label=None ):
'''
Runs the exe associated with src.
Assumes compile_exe( src ) was called previously to generate the exe.
Ex: run_exe( 'foo.c', {'CC': 'gcc'}, 'Test foo' )
runs: ./foo
'''
environ.push( env )
print_test( label )
(base, ext) = os.path.splitext( src )
(rc, stdout, stderr) = run( './' + base )
print_result( label, rc )
environ.pop()
return (rc, stdout, stderr)
# end
#-------------------------------------------------------------------------------
def prog_cxx( choices=['g++', 'c++', 'CC', 'cxx', 'icpc', 'xlc++', 'clang++'] ):
'''
Searches for available C++ compilers from the list of choices.
Sets CXX to the chosen one.
'''
print_header( 'C++ compiler' )
cxx = environ['CXX']
if (cxx):
print( 'Trying $CXX =', cxx )
choices = [ cxx ]
passed = [] # CXX compilers, e.g., g++ or mpicxx
actual = [] # Detected underlying compilers, e.g., g++ or clang++
for cxx in choices:
print_test( cxx )
(rc, out, err) = compile_run( 'config/compiler_cxx.cc', {'CXX': cxx} )
# print (g++), (clang++), etc., as output by compiler_cxx, after yes
if (rc == 0):
cxx_actual = out.strip()
out = '(' + cxx_actual + ')'
actual.append( cxx_actual )
print_result( cxx, rc, out )
if (rc == 0):
passed.append( cxx )
if (not interactive()): break
# end
# end
i = choose( 'Choose C++ compiler:', passed )
environ['CXX'] = passed[i]
environ['CXX_actual'] = actual[i]
# end
#-------------------------------------------------------------------------------
def prog_cxx_flag( flags ):
'''
Tests each flag in flags; the first that passes is added to CXXFLAGS.
flags can be an individual string or an iterable (list, tuple, etc.).
'''
if (type( flags ) == str):
flags = [ flags ]
# end
for flag in flags:
print_test( flag )
(rc, out, err) = compile_obj( 'config/compiler_cxx.cc', {'CXXFLAGS': flag} )
# assume a mention of the flag in stderr means it isn't supported
if (flag in err):
rc = 1
print_result( flag, rc )
if (rc == 0):
environ.append( 'CXXFLAGS', flag )
break
# end
# end
#-------------------------------------------------------------------------------
def openmp( flags=['-fopenmp', '-qopenmp', '-openmp', '-omp', ''] ):
'''
Tests for OpenMP support with one of the given flags.
If a flag works, it is added to both CXXFLAGS and LDFLAGS.
'''
print_header( 'OpenMP support' )
src = 'config/openmp.cc'
for flag in flags:
print_test( flag )
env = {'CXXFLAGS': flag, 'LDFLAGS': flag, 'HAS_OPENMP': True}
(rc, out, err) = compile_run( src, env )
print_result( flag, rc )
if (rc == 0):
environ.merge( env )
break
# end
# end
#-------------------------------------------------------------------------------
def cublas_library():
'''
Tests for linking CUDA and cuBLAS libraries.
Does not actually run the resulting exe, to allow compiling with CUDA on a
machine without GPUs.
'''
# Find CUDA to add -I, -L, -rpath flags.
# CUDA_PATH is used in NVIDIA Getting Started documentation;
# CUDA_HOME is used in Spack CUDA package;
# else infer from `which nvcc`.
cuda_path = environ['CUDA_PATH']
if (not cuda_path):
cuda_path = environ['CUDA_HOME']
if (not cuda_path):
nvcc_path = shutil.which( 'nvcc' )
if (nvcc_path):
(bin_path, nvcc) = os.path.split( nvcc_path )
(cuda_path, bin_) = os.path.split( bin_path )
cxxflags = define('HAVE_CUBLAS')
ldflags = ''
libs = '-lcusolver -lcublas -lcudart'
if (cuda_path):
incdir = os.path.join( cuda_path, 'include' )
if (os.path.exists( incdir )):
cxxflags += ' -I' + incdir
libdir = os.path.join( cuda_path, 'lib64' )
if (not os.path.exists( libdir )):
libdir = os.path.join( cuda_path, 'lib' )
if (os.path.exists( libdir )):
ldflags += '-L' + libdir + ' -Wl,-rpath,' + libdir
# end
print_subhead( 'CUDA and cuBLAS libraries' )
print_test( ' ' + cxxflags + ' ' + ldflags + ' ' + libs )
env = {'CXXFLAGS': cxxflags, 'LDFLAGS': ldflags, 'LIBS': libs}
(rc, out, err) = compile_exe( 'config/cublas.cc', env )
print_result( libs, rc )
if (rc == 0):
environ.merge( env )
else:
raise Error( 'cuBLAS not found' )
# end
#-------------------------------------------------------------------------------
def rocblas_library():
'''
Tests for linking ROCm/HIP and rocBLAS libraries.
Does not actually run the resulting exe, to allow compiling with ROCm on a
machine without GPUs.
'''
# Find ROCm to add -I, -L, -rpath flags.
# ROCM_PATH is used in hipcc and Spack ROCm package;
# else infer from `which hipcc`.
rocm_path = environ['ROCM_PATH']
if (not rocm_path):
hipcc_path = shutil.which( 'hipcc' )
if (hipcc_path):
(bin_path, hipcc) = os.path.split( hipcc_path )
(rocm_path, bin_) = os.path.split( bin_path )
cxxflags = define('HAVE_ROCBLAS')
ldflags = ''
libs = '-lrocsolver -lrocblas -lamdhip64'
if (rocm_path):
incdir = os.path.join( rocm_path, 'include' )
if (os.path.exists( incdir )):
cxxflags += ' -I' + incdir
# Some versions of ROCm (5.1.3) have both lib and lib64 directories;
# we need the lib directory.
libdir = os.path.join( rocm_path, 'lib' )
if (not os.path.exists( libdir )):
libdir = os.path.join( rocm_path, 'lib64' )
if (os.path.exists( libdir )):
ldflags += ' -L' + libdir + ' -Wl,-rpath,' + libdir
# end
print_subhead( 'HIP/ROCm and rocBLAS libraries' )
print_test( ' ' + cxxflags + ' ' + ldflags + ' ' + libs )
env = {'CXXFLAGS': cxxflags, 'LDFLAGS': ldflags, 'LIBS': libs}
(rc, out, err) = compile_exe( 'config/rocblas.cc', env )
print_result( libs, rc )
if (rc == 0):
environ.merge( env )
else:
raise Error( 'rocBLAS not found' )
# end
#-------------------------------------------------------------------------------
def sycl_onemkl_library():
'''
Tests for linking SYCL and oneMKL library.
Does not actually run the resulting exe, to allow compiling on a
machine without GPUs.
'''
libs = '-lmkl_sycl -lsycl -lOpenCL'
print_subhead( 'SYCL and oneMKL libraries' )
print_test( ' ' + libs )
# Intel compiler vars.sh defines $CMPLR_ROOT
root = environ['CMPLR_ROOT'] or environ['CMPROOT']
inc = ''
if (root):
inc = '-I' + root + '/linux/include ' \
+ '-I' + root + '/linux/include/sycl '
env = {'LIBS': libs,
'CXXFLAGS': inc + define('HAVE_SYCL')
+ ' -fsycl -fp-model=precise' }
(rc, out, err) = compile_exe( 'config/onemkl.cc', env )
print_result( libs, rc )
if (rc == 0):
environ.merge( env )
else:
raise Error( 'oneMKL not found' )
# end
#-------------------------------------------------------------------------------
def gpu_blas():
gpu_backend = environ['gpu_backend'] or 'auto'
print_header( 'GPU BLAS libraries: gpu_backend = ' + gpu_backend )
test_auto = re.search( r'\b(auto)\b', gpu_backend )
test_cuda = re.search( r'\b(cuda)\b', gpu_backend ) or test_auto
test_rocm = re.search( r'\b(hip|rocm)\b', gpu_backend ) or test_auto
test_sycl = re.search( r'\b(sycl)\b', gpu_backend ) or test_auto
#----- CUDA
gpu_blas_found = False
if (test_cuda):
try:
cublas_library()
gpu_blas_found = True
except Error as ex:
if (gpu_backend == 'cuda'):
raise ex # fatal
else:
print_msg( font.red( 'skipping CUDA search' ) )
#----- ROCm
if (not gpu_blas_found and test_rocm):
try:
rocblas_library()
gpu_blas_found = True
except Error as ex:
if (gpu_backend in ('hip', 'rocm')):
raise ex # fatal
else:
print_msg( font.red( 'skipping HIP/ROCm search' ) )
#----- SYCL
if (not gpu_blas_found and test_sycl):
try:
sycl_onemkl_library()
gpu_blas_found = True
except Error as ex:
if (gpu_backend == 'sycl'):
raise ex # fatal
else:
print_msg( font.red( 'skipping SYCL search' ) )
if (not gpu_blas_found):
print_warn( 'No GPU BLAS library found' )
# end
#-------------------------------------------------------------------------------
def get_package( name, directories, unique_file, repo_url, tar_url, tar_filename ):
'''
Searches for a package, generally used for internal packages.
Looks for a directory from given list of directories. It checks for
existence of unique_file in the directory, to ensure the directory
actually contains the source.
If found, returns that directory.
If none found, tries to 'git clone repo_url' to the last directory.
If that fails, tries to download tar_url and unpack it to the last directory.
'''
global log
print_header( name )
for directory in directories:
path = os.path.join( directory, unique_file )
print_test( path )
err = not os.path.exists( path )
print_result( directory, err )
if (not err):
return directory
# end
if (repo_url):
if (interactive()):
print( name +' not found; git clone '+ repo_url +'? [Y/n] ', end='' )
sys.stdout.flush()
i = input().lower()
if (not interactive() or i in ('', 'y', 'yes')):
cmd = 'git clone '+ repo_url +' '+ directory
print_test( 'download: ' + cmd )
(err, stdout, stderr) = run( cmd )
print_result( 'download', err )
if (not err):
return directory
# end
if (tar_url):
if (interactive()):
print( name +' not found; download from '+ tar_url +'? [Y/n] ', end='' )
sys.stdout.flush()
i = input().lower()
if (not interactive() or i in ('', 'y', 'yes')):
try:
print_test( 'download: '+ tar_url +' as '+ tar_filename )
urlretrieve( tar_url, tar_filename )
print( 'untar', tar_filename, file=log )
tar = tarfile.open( tar_filename )
files = tar.getnames()
last = ''
for f in files:
# sanitize file names: disallow beginning with / or having ../
if (re.search( r'^/|\.\./', f )):
print( 'skipping', f )
continue
tar.extract( f )
lastfile = f
# end
# rename directory,
# e.g., from icl-testsweeper-dbd960ebf706 to testsweeper
# todo: os.path.sep intsead of '/'?
dirs = re.split( '/', lastfile )
print( 'rename', dirs[0], directory, file=log )
os.rename( dirs[0], directory )
err = 0
except Exception as ex:
print( 'Exception:', str(ex), file=log )
# end
print_result( 'download', err )
if (not err):
return directory
# end
# end
# otherwise, not found
return None
# end
#-------------------------------------------------------------------------------
def extract_defines_from_flags( flags='CXXFLAGS', var='HEADER_DEFINES' ):
'''
Extracts all "-Dname[=value]" defines from the given flags.
Adds all "-Dname[=value]" defines to DEFINES.
Adds all "#define name [value]" defines to HEADER_DEFINES.
Stores all name=value defines for autoconf-like "#undef name" substitution
in output_files().
'''
global environ, defines
exp = r'(-D(\w+)(?:=(\S*))?) *'
defs = re.findall( exp, environ[ flags ] )
environ[ flags ] = re.sub( exp, '', environ[ flags ] ).strip()
header = ''
for (name_value, name, value) in defs:
environ.append( 'DEFINES', name_value )
defines[ name ] = value
if (value):
header += '#define '+ name +' '+ value + '\n'
else:
header += '#define '+ name + '\n'
# end
environ[ var ] = header
# end
#-------------------------------------------------------------------------------
def sub_env( match ):
'''
Given a re (regular expression) match object, returns value of environment variable.
Used in output_files().
'''
return environ[ match.group(1) ]
#-------------------------------------------------------------------------------
def sub_define( match ):
'''
Given a re regexp match object,
returns "#define name [value]" or "// #undef name"
Used in output_files().
'''
global defines
name = match.group(1)
if (name in defines):
value = defines[ name ]
if (value):
return '#define '+ name +' '+ value
else:
return '#define '+ name
else:
return '// #undef '+ name
# end
#-------------------------------------------------------------------------------
def read( filename ):
'''
Reads and returns the entire contents of filename.
'''
f = open( filename, 'r' )
txt = f.read()
f.close()
return txt
# end
#-------------------------------------------------------------------------------
def write( filename, txt ):
'''
Writes txt to filename.
'''
f = open( filename, 'w' )
f.write( txt )
f.close()
# end
#-------------------------------------------------------------------------------
def output_files( files ):
'''
Create each file in files from file.in, substituting @foo@ with variable foo.
This avoids re-creating the file if the contents did not change.
files can be a single file or list of files.
'''
print_header( 'Output files' )
if (isinstance( files, str )):
files = [ files ]
for fname in files:
txt = read( fname + '.in' )
txt = re.sub( r'@(\w+)@', sub_env, txt )
txt = re.sub( r'#undef (\w+)', sub_define, txt )
exists = os.path.exists( fname )
if (exists and txt == read( fname )):
print( fname, 'is unchanged' )
else:
if (exists):
bak = fname + '.bak'
print( 'backing up', fname, 'to', bak )
os.rename( fname, bak )
# end
print( 'creating', fname )
write( fname, txt )
# end
# end
# end
#-------------------------------------------------------------------------------
def parse_args():
'''
Parses command line options.
Sets if interactive and if ansicodes are enabled.
'''
global opts, parser, debug
#--------------------
# Parse command line. We'll handle help ourselves.
parser = argparse.ArgumentParser( add_help=False )
parser.add_argument( '-i', '--interactive', action='store_true',
help='Find all available choices and ask user which to use;'
+' otherwise use first choice found.' )
parser.add_argument( '--color', action='store', default='auto',
help='Use ANSI colors: yes, no, or auto; default %(default)s.' )
parser.add_argument( '--debug', action='store_true',
help='Enable debugging output.' )
parser.add_argument( '-h', '--help', action='store_true',
help='Print help and exit.' )
parser.add_argument( 'options', nargs=argparse.REMAINDER,
help='name=value pairs of options to define.' )
opts = parser.parse_args()
# Parse name=value pairs.
for arg in opts.options:
s = re.search( '^(\w+)=(.*)', arg )
if (s):
environ[ s.group(1) ] = s.group(2)
else:
print( 'Unknown argument:', arg )
exit(1)
# end
if (environ['color']):
opts.color = environ['color']
font.set_enabled( opts.color )
if (environ['interactive']):
opts.interactive = environ['interactive']
if (opts.interactive):
interactive( True )
debug( opts.debug )
# end
#-------------------------------------------------------------------------------
def init( namespace, prefix='/usr/local' ):
'''
Initializes config.
Opens the logfile and deals with OS-specific issues.
'''
global log, namespace_
namespace_ = namespace
# Default prefix.
if (not environ['prefix']):
environ['prefix'] = prefix
#--------------------
logfile = 'config/log.txt'
print( 'opening log file ' + logfile + '\n' )
log = open( logfile, 'w' )
#--------------------
# Workaround if MacOS SIP may have prevented inheriting DYLD_LIBRARY_PATH.
if (sys.platform.startswith('darwin') and
'LD_LIBRARY_PATH' not in os.environ and
'DYLD_LIBRARY_PATH' not in os.environ):
txt = font.bold( 'NOTICE: $DYLD_LIBRARY_PATH was not set or not inherited.\n' )
if ('LIBRARY_PATH' in os.environ):
os.environ['DYLD_LIBRARY_PATH'] = os.environ['LIBRARY_PATH']
txt += 'Setting $DYLD_LIBRARY_PATH = $LIBRARY_PATH to run test programs.\n'
txt += '$LIBRARY_PATH = ' + os.environ['LIBRARY_PATH'] + '\n'
else:
txt += '$LIBRARY_PATH is not set. Leaving $DYLD_LIBRARY_PATH unset.\n'
# end
txt += '''
MacOS System Integrity Protection (SIP) prevents configure.py from inheriting
$DYLD_LIBRARY_PATH. Using
python3 configure.py
directly (not via make), with a 3rd party python3 from python.org, Homebrew, etc.
(i.e., not /usr/bin/python3), will allow $DYLD_LIBRARY_PATH to be inherited.
'''
txt = font.red( txt )
txt += '-'*80
print( txt )
print( txt, file=log )
# end
#--------------------
if (opts.help):
parser.print_help()
exit(0)
# end
# ------------------------------------------------------------------------------
# Initialize global variables here, rather than in init(),
# so they are imported by __init__.py.
environ = Environments()
environ['argv'] = ' '.join( sys.argv )
environ['datetime'] = time.ctime()
defines = {}
# Parse command line early, so ANSI codes are enabled or disabled early on.
parse_args()
|