Changes between Version 5 and Version 6 of pace


Ignore:
Timestamp:
01/13/21 08:42:57 (4 years ago)
Author:
arobel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pace

    v5 v6  
    2929(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.
    3030
    31 2. For other non-test ISSM runs, the batch script should generally look like:<br />
     312. For other non-test ISSM runs, the batch script should generally look like:
    3232------
    3333#PBS -N JOBNAME [[BR]]
     
    69692. 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).
    7070
    71 3. 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).
     713. Once you've successfully built ISSM, the batch script will look slightly different:
     72------
     73#PBS -N JOBNAME [[BR]]
     74#PBS -A GT-arobel3-atlas[[BR]]
     75#PBS -o output.$PBS_JOBID[[BR]]
     76#PBS -j oe[[BR]]
     77#PBS -l nodes=NNODES:ppn=NPROC[[BR]]
     78#PBS -l walltime=DAYS:HOURS:MINS:00[[BR]]
     79
     80ISSMROOT=$PBS_O_WORKDIR
     81cd $ISSMROOT
     82module purge
     83module load matlab
     84module load intel/19.0.5
     85module load mvapich2/2.3.2
     86source $PBS_O_WORKDIR/../../etc/environment.sh
     87
     88matlab -nodesktop -nosplash -r "NAMEOFSCRIPT; exit"[[BR]]
     89------
     90
     914. 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).
    7292
    7393