Skip to content

Commit

Permalink
Merge pull request #8 from mathworks/smpd
Browse files Browse the repository at this point in the history
Fix broken arg placement
  • Loading branch information
jmcave authored Dec 12, 2024
2 parents 37f5dc0 + 33e2b09 commit 1aca5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion communicatingJobWrapperSmpd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ launchSmpds() {
# Launch the SMPD processes on all hosts using srun
echo "Starting SMPD on ${SMPD_HOSTS} ..."

START_SMPD_CMD="srun --ntasks-per-node=1 --ntasks=${SLURM_JOB_NUM_NODES} ${FULL_SMPD} --cpu-bind=none -phrase MATLAB -port ${SMPD_PORT} -debug 0 &"
START_SMPD_CMD="srun --ntasks-per-node=1 --ntasks=${SLURM_JOB_NUM_NODES} --cpu-bind=none ${FULL_SMPD} -phrase MATLAB -port ${SMPD_PORT} -debug 0 &"
echo $START_SMPD_CMD
eval $START_SMPD_CMD

Expand Down

0 comments on commit 1aca5d5

Please sign in to comment.