Changeset 25154


Ignore:
Timestamp:
06/25/20 02:00:16 (5 years ago)
Author:
bdef
Message:

NEW: completing and fix to preceding commit

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  
    102102                if self.interactive:
    103103                    if IssmConfig('_HAVE_MPI_')[0]:
    104                         fid.write('operf mpiexec -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))
    105105                    else:
    106106                        fid.write('{}/{} {} {}/{} {} '.format(self.codepath, executable, solution, self.executionpath, dirname, modelname))
    107107                else:
    108108                    if IssmConfig('_HAVE_MPI_')[0]:
    109                         fid.write('operf mpiexec -np {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog'.
     109                        fid.write('mpiexec -np {} {}/{} {} {}/{} {} 2>{}.errlog>{}.outlog'.
    110110                                  format(self.np, self.codepath, executable, solution, self.executionpath, dirname, modelname, modelname, modelname))
    111111                    else:
Note: See TracChangeset for help on using the changeset viewer.