Changes between Version 6 and Version 7 of pace
- Timestamp:
- 01/13/21 20:30:19 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pace
v6 v7 4 4 5 5 == Running ISSM (Standard install) on PACE == 6 7 6 8 7 ISSM has been built on the PACE cluster at CODA as a module. This means that it is already "installed" and can be used by any PACE user without needing to configure anything (except what is needed for the specific simulation). A user with privileges in the eas-robel group can follow these directions: … … 14 13 (a) To copy these files to your home directory, run the following commands: 15 14 15 {{{ 16 #!sh 16 17 cd ~[[BR]] 17 18 mkdir ISSM[[BR]] 18 19 cd ISSM[[BR]] 19 20 cp /storage/coda1/p-arobel3/0/shared/ISSM/ISSMintro/* .[[BR]] 21 }}} 20 22 21 23 (b) Then to run the test script on PACE, run the following command: 22 24 25 {{{ 26 #!sh 23 27 qsub batch_issm.pbs [[BR]] 28 }}} 24 29 25 30 (c) You can check the status of the run using the following command: 26 31 32 {{{ 33 #!sh 27 34 qstat -u YOURPACEUSERNAME [[BR]] 35 }}} 28 36 29 37 (d) An output text file should be created in the same directory as the batch file. You can have a quick look at the status of the run (which ISSM should output) using vi or less. 30 38 31 39 2. For other non-test ISSM runs, the batch script should generally look like: 32 ------ 40 41 {{{ 42 #!sh 33 43 #PBS -N JOBNAME [[BR]] 34 44 #PBS -A GT-arobel3-atlas[[BR]] … … 45 55 46 56 matlab -nodesktop -nosplash -r "NAMEOFSCRIPT; exit"[[BR]] 47 ------ 57 }}} 58 48 59 In this script, the only things that should be changed are lines 1, 5, 6, 14.[[BR]] 49 60 [[BR]] … … 65 76 1. First, you must download or provide your own version of the source code in you local directory on PACE. You can do this using SVN run through a batch script, or simply by downloading the ISSM source to your personal machine (using the directions here: https://issm.jpl.nasa.gov/download/). In the Ice & Climate group shared directory, there is a build script (build-with-mvapich.sh), written by Dr. Fang Liu at PACE (who is the expert on all things related to ISSM builds on PACE) which can be used to build ISSM locally. Navigate into the "trunk" directory of the source code, then copy this build script from the shared directory: 66 77 78 {{{ 79 #!sh 67 80 cp /storage/coda1/p-arobel3/0/shared/ISSM/ISSMsrc/build-with-mvapich.sh .[[BR]] 81 }}} 68 82 69 83 2. The build script is organized into "batches". To build the packages and source code in the correct order, simply go through the build script and uncomment one batch at a time and then run the script (using the command ./build-with-mvapich.sh after uncommenting each batch individually). 70 84 71 85 3. Once you've successfully built ISSM, the batch script will look slightly different: 72 ------ 86 87 {{{ 88 #!sh 73 89 #PBS -N JOBNAME [[BR]] 74 90 #PBS -A GT-arobel3-atlas[[BR]] … … 87 103 88 104 matlab -nodesktop -nosplash -r "NAMEOFSCRIPT; exit"[[BR]] 89 ------ 105 }}} 90 106 91 107 4. If you are modifying source code and have previously built ISSM locally successfully, you should only need to run batch 6 which simply compiles the source code (and doesn't recompile all the dependencies). 92 108 93 94 95