Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reg_tests/chgres_cube/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module use ../../modulefiles
module load build.$target.intelllvm
module list

ulimit -s unlimited
ulimit -a

export OUTDIR="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"
export OUTDIR="${OUTDIR}/reg-tests/chgres-cube"
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/cpld_gridgen/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ elif [[ $target = orion ]]; then
export NCCMP=nccmp
BASELINE_ROOT=/work/noaa/nems/role-nems/ufs_utils/reg_tests/cpld_gridgen/baseline_data
PARTITION=''
ulimit -s unlimited
ulimit -a
elif [[ $target = hercules ]]; then
STMP=${STMP:-/work2/noaa/stmp/$USER}
ACCOUNT=${ACCOUNT:-fv3-cpu}
Expand Down
2 changes: 2 additions & 0 deletions reg_tests/global_cycle/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ module use ../../modulefiles
module load build.$target.intelllvm
module list

ulimit -a

export WORK_DIR="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"

PROJECT_CODE="${PROJECT_CODE:-fv3-cpu}"
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/grid_gen/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module load build.$target.intelllvm
module list

set -x
ulimit -s unlimited
ulimit -a

export WORK_DIR="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"
export WORK_DIR="${WORK_DIR}/reg-tests/grid-gen"
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/ice_blend/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module load grib-util/1.4.0
module load wgrib2/3.6.0
module list

ulimit -s unlimited
ulimit -a

export DATA="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"
export DATA="${DATA}/reg-tests/ice-blend"
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/ocnice_prep/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ elif [[ $target = orion ]]; then
WLCLK=15
export NCCMP=nccmp
PARTITION=''
ulimit -s unlimited
ulimit -a
elif [[ $target = hercules ]]; then
STMP=${STMP:-/work2/noaa/stmp/$USER}
BASELINE_ROOT=/work/noaa/nems/role-nems/ufs_utils.hercules/reg_tests/ocnice_prep/baseline_data
Expand Down
1 change: 1 addition & 0 deletions reg_tests/regrid_sfc/driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ elif [[ "$target" == "orion" ]];then
export HOMEreg=/work/noaa/nems/role-nems/ufs_utils/reg_tests/regrid_sfc
export APRUN_REGRID=srun
PARTITION=''
ulimit -a
elif [[ "$target" == "hercules" ]];then
WORK_DIR="${WORK_DIR:-/work2/noaa/stmp/$LOGNAME}"
PROJECT_CODE="${PROJECT_CODE:-fv3-cpu}"
Expand Down
6 changes: 5 additions & 1 deletion reg_tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ wait_for_fin() {
done
}

ulimit -s unlimited
if [[ "$(hostname)" =~ "Orion" || "$(hostname)" =~ "orion" ]]; then
ulimit -a
else
ulimit -s unlimited
fi

export MAILTO=

Expand Down
2 changes: 1 addition & 1 deletion reg_tests/snow2mdl/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module load wgrib2/3.6.0
module load prod_util/2.1.1
module list

ulimit -s unlimited
ulimit -a

export DATA_ROOT="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"
export DATA_ROOT="${DATA_ROOT}/reg-tests/snow2mdl"
Expand Down
2 changes: 2 additions & 0 deletions reg_tests/weight_gen/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ module use ../../modulefiles
module load build.$target.$compiler
module list

ulimit -a

export DATA="${WORK_DIR:-/work/noaa/stmp/$LOGNAME}"
export DATA="${DATA}/reg-tests/weight_gen"

Expand Down