Changeset 25153 for issm/trunk-jpl/src/m/classes/clusters/generic.py
- Timestamp:
- 06/25/20 01:59:07 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/classes/clusters/generic.py ΒΆ
r25136 r25153 102 102 if self.interactive: 103 103 if IssmConfig('_HAVE_MPI_')[0]: 104 fid.write(' mpiexec -np {} {}/{} {} {}/{} {}'.format(self.np, self.codepath, executable, solution, self.executionpath, dirname, modelname))104 fid.write('operf mpiexec -np {} {}/{} {} {}/{} {}'.format(self.np, self.codepath, executable, solution, self.executionpath, dirname, modelname)) 105 105 else: 106 106 fid.write('{}/{} {} {}/{} {} '.format(self.codepath, executable, solution, self.executionpath, dirname, modelname)) 107 107 else: 108 108 if IssmConfig('_HAVE_MPI_')[0]: 109 fid.write(' mpiexec -np {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog'.109 fid.write('operf mpiexec -np {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog'. 110 110 format(self.np, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname)) 111 111 else:
Note:
See TracChangeset
for help on using the changeset viewer.