Changeset 27209
- Timestamp:
- 08/16/22 16:44:23 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/runme.py
r27202 r27209 8 8 # 9 9 import argparse 10 from glob import glob 10 11 import os 11 import re 12 from re import search, split 12 13 from sys import float_info 13 14 from traceback import format_exc … … 115 116 # }}} 116 117 #GET ids {{{ 117 flist = [f for f in os.listdir('.') if re.match('test[0-9]+.py', f)] # File name must follow the format "test<integer>.py" 118 list_ids = [int(re.search(r'\d+',file.split('.')[0]).group()) for file in flist] # Retrieve test IDs 119 i1, i2 = parallelrange(rank, numprocs, len(list_ids)) # Get tests for this CPU only 118 flist = glob('test*.py') #File name must start with 'test' and must end by '.py' and must be different than 'test.py' 119 list_ids = [int(search(r'\d+',file.split('.')[0]).group()) for file in flist if not file == 'test.py'] # Keep test id only (skip 'test' and '.py') 120 121 i1, i2 = parallelrange(rank, numprocs, len(list_ids)) #Get tests for this cpu only 120 122 list_ids = list_ids[i1:i2 + 1] 121 123 if np.size(id) > 0 and id is not None: … … 170 172 test_ids = list(test_ids) 171 173 test_ids.sort() 172 print(test_ids)173 174 # }}} 174 175 … … 212 213 for key in mdl.results.__dict__.keys(): 213 214 if 'Solution' in key: 214 solvetype = re.split('Solution', key)[0]215 solvetype = split('Solution', key)[0] 215 216 216 217 #we save the results, scrap them and solve. … … 223 224 try: 224 225 #first look for indexing 225 if re.search(r'\d+$', fieldname):226 index = int( re.search(r'\d+$', fieldname).group()) - 1227 fieldname = fieldname[: re.search(r'\d+$', fieldname).start()]226 if search(r'\d+$', fieldname): 227 index = int(search(r'\d+$', fieldname).group()) - 1 228 fieldname = fieldname[:search(r'\d+$', fieldname).start()] 228 229 elif 'FirstStep' in fieldname: 229 230 index = 0 230 fieldname = fieldname[: re.search('FirstStep', fieldname).start()]231 fieldname = fieldname[:search('FirstStep', fieldname).start()] 231 232 elif 'SecondStep' in fieldname: 232 233 index = 1 233 fieldname = fieldname[: re.search('SecondStep', fieldname).start()]234 fieldname = fieldname[:search('SecondStep', fieldname).start()] 234 235 elif 'ThirdStep' in fieldname: 235 236 index = 2 236 fieldname = fieldname[: re.search('ThirdStep', fieldname).start()]237 fieldname = fieldname[:search('ThirdStep', fieldname).start()] 237 238 else: 238 239 index = 0 … … 269 270 #probably severalmatches, we take the last one which should be the good one (Needs to be controled in the list above) 270 271 sufix = sufixes[np.squeeze(np.where([suf in fieldname for suf in sufixes]))[-1]] 271 fieldname = fieldname[: re.search(sufix, fieldname).start()]272 fieldname = fieldname[:search(sufix, fieldname).start()] 272 273 elif fieldname.endswith("P") and index == 1: 273 274 #we are looking for P2 but 2 as been considered as an index and so shifted by -1
Note:
See TracChangeset
for help on using the changeset viewer.