Skip to content

Commit

Permalink
Merge branch 'develop' into feature/new_ip
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGayno-NOAA committed Feb 9, 2023
2 parents b2696d9 + d98902f commit f426727
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cmake/mpiexec.jet
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
#
# Arguments:
#
# $1 - Number of MPI Tasks
# $2+ - Executable and its arguments
#

ACCOUNT=nesdis-rdo2
QOS=debug
PARTITION=xjet

NP=$1
shift

srun -A $ACCOUNT -p $PARTITION -q $QOS -n $NP $@

0 comments on commit f426727

Please sign in to comment.