Changeset 21234


Ignore:
Timestamp:
09/28/16 07:44:50 (9 years ago)
Author:
bdef
Message:

CHG:modifying cluster to take into account the new modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/vilje.py

    r21050 r21234  
    107107                fid.write('#PBS -e %s/%s/%s.errlog \n\n' % (self.executionpath,dirname,modelname))
    108108                fid.write('export ISSM_DIR="%s/../"\n' % self.codepath)
    109                 fid.write('source $ISSM_DIR/etc/environment.sh\n')
     109                fid.write('module load intelcomp/13.0.1\n')
     110                fid.write('module load mpt/2.06\n')
     111                fid.write('module load petsc/3.4.1d\n')
     112                fid.write('module load parmetis/4.0.2\n')
     113                fid.write('module load mumps/4.10.0\n')
    110114                fid.write('cd %s/%s/\n\n' % (self.executionpath,dirname))
    111                 fid.write('mpiexec -np %i %s/%s %s %s/%s %s\n' % (self.np,self.codepath,executable,str(solution),self.executionpath,dirname,modelname))
     115                fid.write('mpiexec_mpt -np %i %s/%s %s %s/%s %s\n' % (self.np,self.codepath,executable,str(solution),self.executionpath,dirname,modelname))
    112116                fid.close()
    113117
Note: See TracChangeset for help on using the changeset viewer.