Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
910d74f5
Unverified
Commit
910d74f5
authored
Feb 05, 2026
by
Ryan McCormick
Committed by
GitHub
Feb 04, 2026
Browse files
fix: Add mpi arg to all srun commands (#5948)
parent
16956ac6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
examples/basics/multinode/trtllm/srun_aggregated.sh
examples/basics/multinode/trtllm/srun_aggregated.sh
+2
-1
examples/basics/multinode/trtllm/srun_disaggregated.sh
examples/basics/multinode/trtllm/srun_disaggregated.sh
+2
-1
No files found.
examples/basics/multinode/trtllm/srun_aggregated.sh
View file @
910d74f5
...
...
@@ -41,6 +41,7 @@ fi
# the stdout/stderr to files.
echo
"Launching frontend services in background."
srun
\
--mpi
pmix
\
--overlap
\
--container-image
"
${
IMAGE
}
"
\
--container-mounts
"
${
MOUNTS
}
"
\
...
...
@@ -71,4 +72,4 @@ srun \
--nodes
"
${
NUM_NODES
}
"
\
--ntasks-per-node
"
${
NUM_GPUS_PER_NODE
}
"
\
--jobid
"
${
SLURM_JOB_ID
}
"
\
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
\ No newline at end of file
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
examples/basics/multinode/trtllm/srun_disaggregated.sh
View file @
910d74f5
...
...
@@ -44,6 +44,7 @@ fi
# the stdout/stderr to files.
echo
"Launching frontend services in background."
srun
\
--mpi
pmix
\
--overlap
\
--container-image
"
${
IMAGE
}
"
\
--container-mounts
"
${
MOUNTS
}
"
\
...
...
@@ -97,4 +98,4 @@ for ((i=1; i<=${NUM_DECODE_WORKERS}; i++)); do
--ntasks-per-node
"
${
NUM_GPUS_PER_NODE
}
"
\
--jobid
"
${
SLURM_JOB_ID
}
"
\
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
done
\ No newline at end of file
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment