#!/bin/bash
#
# Arguments:
#
#   $1  - Number of MPI Tasks
#   $2+ - Executable and its arguments
#

ACCOUNT=fv3-cpu
QOS=debug

NP=$1
shift

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