Skip to content

Commit b270f13

Browse files
authored
Merge pull request #13876 from mcgratta/master
qfds.sh: Remove environment variable
2 parents 1e063ba + 28f4dc2 commit b270f13

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Utilities/Scripts/qfds.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function usage {
5959
echo " -n n - number of MPI processes per node [default: 1]"
6060
echo " -P use PBS/Torque"
6161
echo " -s - stop job"
62-
echo " -t - used for timing studies, run a job alone on a node (reserving $NCORES_COMPUTENODE cores)"
62+
echo " -t - used for timing studies, run a job alone on a node"
6363
echo " -T type - run dv (development) or db (debug) version of fds"
6464
echo " if -T is not specified then the release version of fds is used"
6565
echo " -U n - only allow n jobs owned by `whoami` to run at a time"
@@ -106,11 +106,6 @@ if [ "$QFDS_NCORES" == "" ]; then
106106
else
107107
n_cores=$QFDS_NCORES
108108
fi
109-
if [ "$NCORES_COMPUTENODE" == "" ]; then
110-
NCORES_COMPUTENODE=$n_cores
111-
else
112-
n_cores=$NCORES_COMPUTENODE
113-
fi
114109

115110
#*** set default parameter values
116111

0 commit comments

Comments
 (0)