Changeset 25154
- Timestamp:
- 06/25/20 02:00:16 (5 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/generic.py
r25153 r25154 102 102 if self.interactive: 103 103 if IssmConfig('_HAVE_MPI_')[0]: 104 fid.write(' operfmpiexec -np {} {}/{} {} {}/{} {}'.format(self.np, self.codepath, executable, solution, self.executionpath, dirname, modelname))104 fid.write('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(' operfmpiexec -np {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog'.109 fid.write('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.