Changeset 20500 for issm/trunk/src/m/solve/loadresultsfromcluster.py
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk ¶
- Property svn:ignore
-
TabularUnified
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src ¶
- Property svn:mergeinfo changed
-
TabularUnified issm/trunk/src/m/solve/loadresultsfromcluster.py ¶
r17806 r20500 1 1 import os 2 2 import socket 3 import MatlabFuncs asm3 import platform 4 4 from loadresultsfromdisk import loadresultsfromdisk 5 5 … … 35 35 #erase the log and output files 36 36 if md.qmu.isdakota: 37 os.remove(os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name+'.outlog')) 38 os.remove(os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name+'.errlog')) 37 filename=os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name) 39 38 else: 40 os.remove(md.miscellaneous.name+'.outlog') 41 os.remove(md.miscellaneous.name+'.errlog') 42 os.remove(md.miscellaneous.name+'.outbin') 43 if not m.ispc(): 44 os.remove(md.private.runtimename+'.tar.gz') 39 filename=md.miscellaneous.name 40 TryRem('.outbin',filename) 41 if not platform.system()=='Windows': 42 TryRem('.tar.gz',md.private.runtimename) 45 43 44 TryRem('.errlog',filename) 45 TryRem('.outlog',filename) 46 46 47 #erase input file if run was carried out on same platform. 47 48 hostname=socket.gethostname() 48 if m.strcmpi(hostname,cluster.name):49 if hostname==cluster.name: 49 50 if md.qmu.isdakota: 50 os.remove(os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name+'.bin'))51 os.remove(os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name+'.queue'))51 filename=os.path.join('qmu'+str(os.getpid()),md.miscellaneous.name) 52 TryRem('.queue',filename) 52 53 else: 53 os.remove(md.miscellaneous.name+'.bin')54 os.remove(md.miscellaneous.name+'.toolkits')55 if not m.ispc():56 os.remove(md.miscellaneous.name+'.queue')54 filename=md.miscellaneous.name 55 TryRem('.toolkits',filename) 56 if not platform.system()=='Windows': 57 TryRem('.queue',filename) 57 58 else: 58 os.remove(md.miscellaneous.name+'.bat') 59 TryRem('.bat',filename) 60 61 TryRem('.bin',filename) 59 62 60 63 return md 61 64 65 def TryRem(extension,filename): 66 try: 67 os.remove(filename+extension) 68 except OSError: 69 print 'WARNING, no '+extension+' is present for run '+filename
Note:
See TracChangeset
for help on using the changeset viewer.