Changeset 26922
- Timestamp:
- 03/08/22 15:01:29 (3 years ago)
- Location:
- issm/trunk-jpl/src/m/classes/clusters
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/pfe.m
r26835 r26922 174 174 fprintf(fid,'export ISSM_DIR="%s"\n',cluster.srcpath); %FIXME 175 175 fprintf(fid,'source $ISSM_DIR/etc/environment.sh\n'); %FIXME 176 fprintf(fid,'export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$ISSM_DIR/externalpackages/petsc/install/lib"\n');177 176 fprintf(fid,'cd %s/%s/\n\n',cluster.executionpath,dirname); 178 177 if ~isvalgrind, -
issm/trunk-jpl/src/m/classes/clusters/pfe.py
r26835 r26922 178 178 fid.write('export ISSM_DIR="{}"\n'.format(self.srcpath)) # FIXME 179 179 fid.write('source $ISSM_DIR/etc/environment.sh\n') # FIXME 180 fid.write('export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$ISSM_DIR/externalpackages/petsc/install/lib"\n')181 180 fid.write('cd {}/{}/\n\n'.format(self.executionpath, dirname)) 182 181 fid.write('mpiexec -np {} {}/{} {} {}/{} {}\n'.format(self.nprocs(), self.codepath, executable, solution, self.executionpath, dirname, modelname))
Note:
See TracChangeset
for help on using the changeset viewer.