Assume a script including the following content is passed to qsub as qsub myscript.sh
#PBS -N Job_name
#PBS -l walltime=10:30,mem=320kb
#PBS -m be
#
step1 arg1 arg2
step2 arg3 arg4
Will step1 and step2 run in parallel over different nodes or sequentially on the allocated resource?