Changeset 24569
- Timestamp:
- 02/20/20 06:05:48 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 20 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/generic.py
r24497 r24569 30 30 self.executionpath = issmdir() + '/execution' 31 31 self.valgrind = issmdir() + '/externalpackages/valgrind/install/bin/valgrind' 32 self.valgrindlib = issmdir() + '/externalpackages/valgrind/install/lib/libmpidebug.so'33 self.valgrindsup = issmdir() + '/externalpackages/valgrind/issm.supp'32 self.valgrindlib = '/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi.so.20.10.1' 33 self.valgrindsup = [issmdir() + '/externalpackages/valgrind/issm.supp'] # add any .supp in list form as needed 34 34 35 35 #use provided options to change fields … … 103 103 #Add --gen -suppressions = all to get suppression lines 104 104 #fid.write('LD_PRELOAD={} \\\n'.format(self.valgrindlib)) it could be deleted 105 supstring = '' 106 for supfile in self.valgrindsup: 107 supstring += ' --suppressions=' + supfile 108 105 109 if IssmConfig('_HAVE_MPI_')[0]: 106 fid.write('mpiexec -np {} {} --leak-check=full --suppressions={} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog '.107 format(self.np, self.valgrind, s elf.valgrindsup, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname))110 fid.write('mpiexec -np {} {} --leak-check=full {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog '. 111 format(self.np, self.valgrind, supstring, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname)) 108 112 else: 109 fid.write('{} --leak-check=full --suppressions={} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog '.110 format(self.valgrind, s elf.valgrindsup, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname))113 fid.write('{} --leak-check=full {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog '. 114 format(self.valgrind, supstring, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname)) 111 115 112 116 if not io_gather: #concatenate the output files: … … 147 151 #Add - - gen - suppressions = all to get suppression lines 148 152 #fid.write('LD_PRELOAD={} \\\n'.format(self.valgrindlib)) 149 fid.write('mpiexec -np {} {} --leak -check=full --suppressions={} {}/kriging.exe {}/{} {} 2 > {}.errlog > {}.outlog ' .format 150 (self.np, self.valgrind, self.valgrindsup, self.codepath, self.executionpath, modelname, modelname, modelname, modelname)) 153 fid.write('mpiexec -np {} {} --leak -check=full --suppressions={} {}/kriging.exe {}/{} {} 2 > {}.errlog > {}.outlog ' .format(self.np, self.valgrind, self.valgrindsup, self.codepath, self.executionpath, modelname, modelname, modelname, modelname)) 151 154 if not io_gather: #concatenate the output files: 152 155 fid.write('\ncat {}.outbin. *>{}.outbin'.format(modelname, modelname)) -
issm/trunk-jpl/src/m/plot/plot_unit.py
r24565 r24569 73 73 else: 74 74 limextent = 0. 75 75 76 if options.exist('clim'): 76 77 lims = options.getfieldvalue('clim', [np.nanmin(data), np.nanmax(data)]) … … 78 79 lims = options.getfieldvalue('caxis', [np.nanmin(data), np.nanmax(data)]) 79 80 else: 80 if np.nanmin(data) == np.nanmax(data): 81 lims = [np.nanmin(data) * 0.9, np.nanmax(data) * 1.1] 81 if limextent == 0.: 82 delta = abs(0.1 * np.nanmin(data)) 83 lims = [np.nanmin(data) - delta, np.nanmax(data) + delta] 82 84 elif limextent < 1.0e-12: 83 85 lims = [np.nanmin(data) - 2 * dataspread, np.nanmax(data) + 2 * dataspread] -
issm/trunk-jpl/test/NightlyRun/GetIds.py
r24261 r24569 44 44 if np.array([type(i) == int for i in ids_names]).all(): 45 45 ids = ids_names 46 if np.array([type(i) == np.int64 for i in ids_names]).all(): 47 ids = ids_names 46 48 elif np.array([type(i) == str for i in ids_names]).all(): 47 49 ids = np.concatenate([IdFromString(i) for i in ids_names])
Note:
See TracChangeset
for help on using the changeset viewer.