forked from ufs-community/UFS_UTILS
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/reg_tests This commit references ufs-community#99.
Add global_cycle reg test driver script for Jet.
- Loading branch information
1 parent
4f1987a
commit deb18c1
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH -J cycle_driver | ||
#SBATCH -A emcda | ||
#SBATCH --open-mode=truncate | ||
#SBATCH -o regression.log | ||
#SBATCH -e regression.log | ||
#SBATCH --nodes=1 --ntasks-per-node=6 | ||
#SBATCH --partition=xjet | ||
#SBATCH -q windfall | ||
#SBATCH -t 00:05:00 | ||
|
||
set -x | ||
|
||
. /apps/lmod/lmod/init/sh | ||
module purge | ||
module load intel/18.0.5.274 | ||
module load impi/2018.4.274 | ||
module load szip | ||
module load hdf5 | ||
module load netcdf/4.2.1.1 | ||
module list | ||
|
||
export DATA=/lfs3/HFIP/emcda/$LOGNAME/stmp/reg_tests.cycle | ||
|
||
|
||
export HOMEreg=/lfs3/HFIP/emcda/George.Gayno/reg_tests/global_cycle | ||
export OMP_NUM_THREADS_CY=2 | ||
|
||
export APRUNCY="srun" | ||
|
||
export NWPROD=$PWD/../.. | ||
|
||
export COMOUT=$DATA | ||
|
||
export NCCMP=/apps/nccmp/1.8.2.1/intel/18.0.3.222/bin/nccmp | ||
|
||
reg_dir=$PWD | ||
|
||
./C768.fv3gfs.sh | ||
|
||
cp $DATA/summary.log $reg_dir | ||
|
||
exit |