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
|
#!/usr/bin/env python
##############################################################################
#
# Copyright (c) 2003-2020 by The University of Queensland
# http://www.uq.edu.au
#
# Primary Business: Queensland, Australia
# Licensed under the Apache License, version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
# Development until 2012 by Earth Systems Science Computational Center (ESSCC)
# Development 2012-2013 by School of Earth Sciences
# Development from 2014 by Centre for Geoscience Computing (GeoComp)
#
##############################################################################
import argparse, os, re, sys, subprocess
# Escript wrapper for python
# Sets LD_LIBRARY_PATH and PYTHONPATH and then runs either python or the MPI
# launcher.
# Extra paths can be configured about a page further down
# Search for EXTRA_PATH = ''
# set to 1 if this is part of a packaged build (.deb) and files will be
# installed in standard locations rather than everything in a single directory
stdlocation = '%(STDLOCATION)s'
# Now we find the location of this script
# Note that this location should be absolute but does not need to be unique
scriptdir = ''
curdir = os.getcwd()
# Environment vars which control operations:
# ESCRIPT_NUM_NODES, ESCRIPT_NUM_PROCS, ESCRIPT_NUM_THREADS, ESCRIPT_HOSTFILE, ESCRIPT_CREATESTDFILES
IS_WINDOWS = (os.name == 'nt')
env = os.environ
if IS_WINDOWS:
tempdir, username = env['TEMP'], env['USERNAME']
IS_DARWIN = False
else:
tempdir, username = '/tmp', env['USER']
IS_DARWIN = (os.uname()[0] == 'Darwin')
hostfile = os.path.join(tempdir, 'escript.'+username+'.'+str(os.getpid()))
def which(cmd):
hits = []
paths = env['PATH'].split(os.pathsep)
for path in paths:
hit = os.path.join(path, cmd)
if os.path.isfile(hit):
hits.append(hit)
return hits
def die(msg):
print('Error: {msg}'.format(msg=msg), file = sys.stderr)
exit(1)
#Begin finding ESCRIPT_ROOT
if stdlocation != '0':
#Package building scripts will replace this line
ESCRIPT_ROOT = '%(ESROOT)s'
else:
# We don't know the escript root so we need to work it out from the invocation
# Need to match if the name contains /
if sys.argv[0].find(os.sep):
# We are not using the PATH to find the script
scriptdir = os.path.dirname(os.path.abspath(sys.argv[0]))
else:
# name does not contain / therefore we are using
scriptdirs = which(sys.argv[0])
if len(scriptdirs) < 1:
die('Unable to determine script directory!')
scriptdir = os.path.dirname(scriptdirs[0])
ESCRIPT_ROOT = os.path.dirname(scriptdir)
ESCRIPT_PARENT = os.path.dirname(ESCRIPT_ROOT)
##### End finding ESCRIPT_ROOT ########
# if possible please express paths relative to $ESCRIPT_ROOT unless
# they are in an unrelated location
EXTRA_DYLD_LIBRARY_PATH = ''
EXTRA_PATH = os.path.join(ESCRIPT_ROOT, 'bin')
EXTRA_PYTHONPATH = ESCRIPT_ROOT
# TODO: both options are the same?
# if stdlocation == '1':
# EXTRA_LD_LIBRARY_PATH = os.path.join(ESCRIPT_ROOT, 'lib')
# else:
# EXTRA_LD_LIBRARY_PATH = os.path.join(ESCRIPT_ROOT, 'lib')
if IS_WINDOWS:
EXTRA_LD_LIBRARY_PATH = ''
else:
EXTRA_LD_LIBRARY_PATH = os.path.join(ESCRIPT_ROOT, 'lib')
def printExports():
if IS_WINDOWS:
cmd, env1, env2 = 'set', '%%', '%%'
print(cmd+' PATH='+os.pathsep.join(filter(None, [EXTRA_PATH, EXTRA_LD_LIBRARY_PATH, env1+'PATH'+env2])))
else:
cmd, env1, env2 = 'export', '$', ''
print(cmd+' LD_LIBRARY_PATH='+os.pathsep.join(filter(None, [EXTRA_LD_LIBRARY_PATH,
env1+'LD_LIBRARY_PATH'+env2])))
print(cmd+' PATH='+os.pathsep.join(filter(None, [EXTRA_PATH, env1+'PATH'+env2])))
print(cmd+' PYTHONPATH='+os.pathsep.join(filter(None, [EXTRA_PYTHONPATH, env1+'PYTHONPATH'+env2])))
if IS_DARWIN:
print('export DYLD_LIBRARY_PATH = '+os.pathsep.join(filter(None, [EXTRA_DYLD_LIBRARY_PATH,
EXTRA_LD_LIBRARY_PATH, '$DYLD_LIBRARY_PATH'])))
exit(0)
def get_buildvar(bldvar):
with open(buildinfo_file, 'r') as f:
m = re.search(bldvar+'[ ]*=(?P<bldvar>.*)$', f.read(), re.MULTILINE)
if m:
return m.group('bldvar').strip()
parser = argparse.ArgumentParser()
parser.add_argument('-n', metavar='nn', help='number of nodes to use')
parser.add_argument('-p', metavar='np', help='number of MPI processes to spawn per node')
parser.add_argument('-t', metavar='nt', help='number of OpenMP threads to use')
parser.add_argument('-f', metavar='file', help='name of MPI hostfile')
parser.add_argument('-c', action='store_true', help='print compile information for escript and exit')
parser.add_argument('-V', action='store_true', help='print escript version and exit')
parser.add_argument('-i', action='store_true', help='interactive mode')
parser.add_argument('-b', action='store_true', help='do not invoke python (run non-python programs)')
parser.add_argument('-e', action='store_true', help='print export statements for environment and exit')
parser.add_argument('-o', action='store_true', help='redirect output from MPI to files')
parser.add_argument('-v', action='store_true', help='print diagnostics')
parser.add_argument('-x', action='store_true', help='run in new xterm instance')
parser.add_argument('-m', metavar='tool', help='run with valgrind {tool=m[emcheck]/c[allgrind]/[cac]h[egrind]}')
parser.add_argument('script.py [args...]', nargs=argparse.REMAINDER, help='Your python script and optional command-line arguments')
args = parser.parse_args()
if IS_WINDOWS:
buildinfo_dir = 'bin'
else:
buildinfo_dir = 'lib'
buildinfo_file = os.path.join(ESCRIPT_ROOT, buildinfo_dir, 'buildvars')
if not os.access(buildinfo_file, os.R_OK):
if args.e:
printExports()
die('Unable to read escript build information!')
PYTHON_MPI_NULL = os.path.join(ESCRIPT_ROOT, 'lib', 'pythonMPI')
PYTHON_MPI_REDIRECT = os.path.join(ESCRIPT_ROOT, 'lib', 'pythonMPIredirect')
PYTHON_CMD = get_buildvar('python')
#==============================================================================
# Parse the command-line options
DO_BINARY = args.b
DO_VALGRIND = args.m
ESCRIPT_NUM_NODES = 1 if args.n is None else int(args.n)
ESCRIPT_NUM_PROCS = 1 if args.p is None else int(args.p)
ESCRIPT_NUM_THREADS = args.t if args.t is None else int(args.t)
ESCRIPT_HOSTFILE = args.f
DO_INTERACTIVE = args.i
ESCRIPT_CREATESTDFILES = args.o
ESCRIPT_VERBOSE = args.v
DO_XTERM = args.x
if args.c:
with open(buildinfo_file, 'r') as f:
print(f.read())
exit(0)
if args.V:
print('escript-development(build '+get_buildvar('svn_revision')+')')
exit(0)
if args.e:
printExports()
exit(0)
PY_SCRIPT = ' '.join(args.__dict__.get('script.py [args...]', ''))
def vlog(msg):
if ESCRIPT_VERBOSE != 0:
print(msg)
#==============================================
#
# Read MPI_FLAVOUR and WITH_OPENMP from the buildvars
#
MPI_FLAVOUR = get_buildvar('mpi')
WITH_OPENMP = get_buildvar('openmp')
vlog('MPI flavour is '+MPI_FLAVOUR+'.')
if WITH_OPENMP == '1':
vlog('OpenMP enabled.')
else:
vlog('OpenMP disabled.')
#
# Add VisIt paths if required
#
WITH_VISIT = get_buildvar('visit')
if WITH_VISIT == '1':
visit_bins = which('visit')
if len(visit_bins) > 0:
visit_bin = visit_bins[0]
m = re.search('LIBPATH[ ]*=(?P<libpath>.*)$', subprocess.Popen(visit_bin+' -env', shell=True,
stdout=subprocess.PIPE).stdout.read().decode(sys.stdout.encoding), re.MULTILINE)
VISIT_PY_PATH = m.group('libpath').strip()
EXTRA_PYTHONPATH = os.pathsep.join(filter(None, [EXTRA_PYTHONPATH, VISIT_PY_PATH]))
EXTRA_LD_LIBRARY_PATH = os.pathsep.join(filter(None, [EXTRA_LD_LIBRARY_PATH, VISIT_PY_PATH]))
else:
vlog('Warning: VisIt module enabled but VisIt not in path!')
#
# extend path variables
#
export_env = env
if IS_WINDOWS:
export_env['PATH'] = os.pathsep.join(filter(None, [EXTRA_PATH, EXTRA_LD_LIBRARY_PATH, export_env.get('PATH', '')]))
else:
export_env['PATH'] = os.pathsep.join(filter(None, [EXTRA_PATH, export_env.get('PATH', '')]))
export_env['LD_LIBRARY_PATH'] = os.pathsep.join(filter(None, [EXTRA_LD_LIBRARY_PATH,
export_env.get('LD_LIBRARY_PATH', '')]))
export_env['PYTHONPATH'] = os.pathsep.join(filter(None, [EXTRA_PYTHONPATH, export_env.get('PYTHONPATH', '')]))
if IS_DARWIN:
export_env['DYLD_LIBRARY_PATH'] = os.pathsep.join(filter(None, [EXTRA_DYLD_LIBRARY_PATH, EXTRA_LD_LIBRARY_PATH,
export_env.get('DYLD_LIBRARY_PATH', '')]))
vlog('PATH='+export_env['PATH']+'\nLD_LIBRARY_PATH='+export_env.get('LD_LIBRARY_PATH','None')+
'\nPYTHONPATH='+export_env['PYTHONPATH'])
if IS_DARWIN:
vlog('DYLD_LIBRARY_PATH='+export_env['DYLD_LIBRARY_PATH'])
#==============================================
#
# Ensure the variables have sensible values
#
if MPI_FLAVOUR == 'none':
if ESCRIPT_NUM_NODES is not None:
if ESCRIPT_NUM_NODES > 1:
print('Warning: MPI disabled but number of nodes set. Option ignored.')
if ESCRIPT_NUM_PROCS is not None:
if ESCRIPT_NUM_PROCS > 1:
print('Warning: MPI disabled but number of processors per node set. Option ignored.')
if ESCRIPT_HOSTFILE is not None:
print('Warning: MPI disabled but host file is given. Option ignored.')
ESCRIPT_NUM_NODES = 1
ESCRIPT_NUM_PROCS = 1
else:
# use the PBS_NODEFILE if not otherwise specified
PBS_NODEFILE = env.get('PBS_NODEFILE')
if (PBS_NODEFILE is not None) and (ESCRIPT_HOSTFILE is None):
ESCRIPT_HOSTFILE = PBS_NODEFILE
if ESCRIPT_HOSTFILE is not None:
if os.path.isfile(ESCRIPT_HOSTFILE):
with open(ESCRIPT_HOSTFILE, 'r') as f:
hosts = [s for s in sorted(set(f.read().split('\n'))) if len(s) > 0] # sort unique no blanks
with open(hostfile, 'w') as f:
f.write('\n'.join(hosts))
HOSTLIST = ','.join(hosts)
NUM_HOSTS = len(hosts)
if ESCRIPT_NUM_NODES is not None:
if NUM_HOSTS < ESCRIPT_NUM_NODES:
die('Number of requested nodes must not exceed the number of entries selected in the host file '+
ESCRIPT_HOSTFILE+'. You asked for '+str(ESCRIPT_NUM_NODES)+' from '+str(NUM_HOSTS)+'.')
else:
ESCRIPT_NUM_NODES = NUM_HOSTS
else:
die('Cannot find hostfile '+ESCRIPT_HOSTFILE+'!')
else:
with open(hostfile, 'a') as f:
f.write('\nlocalhost')
HOSTLIST = 'localhost'
vlog('ESCRIPT_NUM_NODES = '+str(ESCRIPT_NUM_NODES)+'\nESCRIPT_NUM_PROCS = '+str(ESCRIPT_NUM_PROCS))
if WITH_OPENMP == '1':
if ESCRIPT_NUM_THREADS is None:
ESCRIPT_NUM_THREADS = int(env.get('OMP_NUM_THREADS', '1'))
vlog('ESCRIPT_NUM_THREADS = '+str(ESCRIPT_NUM_THREADS))
else:
if ESCRIPT_NUM_THREADS is not None:
if ESCRIPT_NUM_THREADS != 1:
print('Warning: OpenMP is disabled but number of threads requested is '+
str(ESCRIPT_NUM_THREADS)+' != 1. Option ignored.')
ESCRIPT_NUM_THREADS = 1
#
# Now we compute total number of Processes
#
try:
TOTPROC = ESCRIPT_NUM_NODES * ESCRIPT_NUM_PROCS
except:
#Some compute error
#This could happen if the args were not a number
die('Expression of total number of processors = '+str(ESCRIPT_NUM_NODES)+' * '+
str(ESCRIPT_NUM_PROCS)+' is not numerical!')
# set up thread binding if unset -- disabled by default because it interfers
# with MPI binding
#if env.get('OMP_PROC_BIND') == '':
# #Force OpenMP binding for Intel (and GCC, though GCC is on by default)
# export_env['OMP_PROC_BIND'] = 'true'
#if os.environ.get('KMP_AFFINITY') == '':
# #Set the style of binding (overrides OMP_PROC_BIND in many cases)
# export_env['KMP_AFFINITY'] = 'verbose,compact'
#
# Test to ensure people aren't trying to combine interactive and multi-process
#
if (DO_INTERACTIVE or (len(sys.argv) == 0)) and (TOTPROC > 1 ):
die('Interactive mode cannot be used with more than one process!')
if TOTPROC > 1:
if ESCRIPT_CREATESTDFILES == 'y':
PYTHON_MPI = PYTHON_MPI_REDIRECT
else:
PYTHON_MPI = PYTHON_MPI_NULL
else:
PYTHON_MPI = PYTHON_MPI_NULL
#==============================================================================
# Must have at least one command-line arg: the python script
if len(sys.argv) == 0:
if DO_BINARY:
die('No program to run was specified!')
else:
DO_INTERACTIVE = True
#==============================================================================
if DO_XTERM:
EXEC_CMD = 'xterm -e'
else:
EXEC_CMD = ''
if DO_VALGRIND is not None:
VALGRIND_BINS = which('valgrind')
if len(VALGRIND_BINS) > 0:
LOGDIR = os.path.join(ESCRIPT_ROOT, 'valgrind_logs')
if not os.isdir(LOGDIR):
os.mkdir(LOGDIR)
if DO_VALGRIND.startwith('c'):
# run callgrind
LOGFILE = os.path.join(LOGDIR, 'callgrind.'+str(os.getpid())+'.xml')
VALGRIND = 'valgrind --tool=callgrind --callgrind-out-file='+LOGFILE
EXEC_CMD = (EXEC_CMD+' '+VALGRIND).strip()
elif DO_VALGRIND.startwith('h'):
# run cachegrind
LOGFILE = os.path.join(LOGDIR, 'cachegrind.'+str(os.getpid())+'.xml')
VALGRIND = 'valgrind --tool=cachegrind --cachegrind-out-file='+LOGFILE
EXEC_CMD = (EXEC_CMD+' '+VALGRIND).strip()
else:
# run memcheck by default
with open(LOGDIR, 'r') as f:
new_n = int(re.findall('^memcheck[^.]*[.](.*)$',f,re.MULTILINE)[-1])+1
LOGFILE = os.path.join(LOGDIR, 'memcheck.'+new_n+'.'+str(os.getpid())+'.xml')
VALGRIND = 'valgrind --tool=memcheck --xml=yes --show-reachable=yes --error-limit=no --suppressions=' \
+os.path.join(ESCRIPT_ROOT, 'scripts', 'escript.supp --leak-check=full --xml-file='+LOGFILE)
EXEC_CMD = (EXEC_CMD+' '+VALGRIND).strip()
else:
die('Execution with valgrind requested but valgrind not in path!')
if DO_BINARY:
# TODO:
EXEC_CMD = (EXEC_CMD+' '+PY_SCRIPT).strip()
else:
# Check to see if the python version we were compiled with matches the
# one of PYTHON_CMD.
compfull = get_buildvar('python_version')
m = re.search('^(?P<major>[^.])[.](?P<minor>[^.])[.].*$', compfull)
compmajor = m.group('major')
compversion = compmajor+'.'+m.group('minor')
if PYTHON_CMD == 'python': # if people have customised the command they
if compmajor == '3': # might not want us changing it
PYTHON_CMD = 'python3'
cmd = PYTHON_CMD+' -c "import sys;print(str(sys.version_info[0])+\'.\'+str(sys.version_info[1]))"'
intversion = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE).stdout.read().decode(
sys.stdout.encoding).strip()
if compversion != intversion:
die("Python versions do not match. Escript was compiled for '"+
compversion+"'.\nCurrent version of Python appears to be '"+intversion+"'.")
if MPI_FLAVOUR == 'none':
if DO_INTERACTIVE:
EXEC_CMD = (EXEC_CMD+' '+PYTHON_CMD+' -i '+PY_SCRIPT).strip()
else:
EXEC_CMD = (EXEC_CMD+' '+PYTHON_CMD+' '+PY_SCRIPT).strip()
else:
if DO_INTERACTIVE:
EXEC_CMD = (EXEC_CMD+' '+PYTHON_MPI+' -i '+PY_SCRIPT).strip()
else:
EXEC_CMD = (EXEC_CMD+' '+PYTHON_MPI+' '+PY_SCRIPT).strip()
export_env['EXEC_CMD'] = EXEC_CMD
vlog("Command to be executed is '"+EXEC_CMD+"'")
#==============================================================================
#
# now we start to spawn things:
#
if WITH_OPENMP == '1':
export_env['OMP_NUM_THREADS'] = str(ESCRIPT_NUM_THREADS)
if MPI_FLAVOUR == 'OPENMPI':
if len(which('rsh'))+len(which('ssh')) == 0:
AGENTOVERRIDE = '--gmca plm_rsh_agent /bin/false'
prelaunch = '%(PRELAUNCH)s'
if len(prelaunch) > 0:
vlog("Pre-launch command: '"+prelaunch+"'")
subprocess.call(prelaunch, shell=True, env=export_env)
launch = '%(LAUNCH)s'
if len(launch) > 0:
vlog("Launch command: '"+launch+"'")
exit_code = subprocess.call(launch, shell=True, env=export_env)
postlaunch = '%(POSTLAUNCH)s'
if len(postlaunch) > 0:
vlog("Post-launch command: '"+postlaunch+"'")
subprocess.call(postlaunch, shell=True, env=export_env)
if DO_VALGRIND is not None:
print('Valgrind log file written to '+LOGFILE)
if os.path.isfile(hostfile):
os.remove(hostfile)
exit(exit_code)
|