Skip to content
Prev Previous commit
Next Next commit
more rabbit
Signed-off-by: Anant Sharma <[email protected]>
  • Loading branch information
nv-anants committed Oct 23, 2025
commit d9d40d280ee8caf1d462c03cc77344523dda3096
2 changes: 1 addition & 1 deletion docs/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ args:
- python3 -m dynamo.trtllm
--model-path deepseek-ai/DeepSeek-R1-Distill-Llama-8B
--served-model-name deepseek-ai/DeepSeek-R1-Distill-Llama-8B
--extra-engine-args $DYNAMO_HOME/recipes/deepseek-r1-distill-llama-8b/agg.yaml
--extra-engine-args /workspace/recipes/deepseek-r1-distill-llama-8b/agg.yaml
```

Key customization points include:
Expand Down
4 changes: 2 additions & 2 deletions examples/basics/multinode/trtllm/srun_aggregated.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ srun \
--nodelist "${HEAD_NODE}" \
--nodes 1 \
--jobid "${SLURM_JOB_ID}" \
/mnt/examples/multimodal/scripts/start_frontend_services.sh &
/mnt/examples/basics/multinode/trtllm/start_frontend_services.sh &

# NOTE: Output streamed to stdout for ease of understanding the example, but
# in practice you would probably set `srun --output ... --error ...` to pipe
Expand All @@ -71,4 +71,4 @@ srun \
--nodes "${NUM_NODES}" \
--ntasks-per-node "${NUM_GPUS_PER_NODE}" \
--jobid "${SLURM_JOB_ID}" \
/mnt/examples/multimodal/scripts/start_trtllm_worker.sh &
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
6 changes: 3 additions & 3 deletions examples/basics/multinode/trtllm/srun_disaggregated.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ srun \
--nodelist "${HEAD_NODE}" \
--nodes 1 \
--jobid "${SLURM_JOB_ID}" \
/mnt/examples/multimodal/scripts/start_frontend_services.sh &
/mnt/examples/basics/multinode/trtllm/start_frontend_services.sh &

# NOTE: Output streamed to stdout for ease of understanding the example, but
# in practice you would probably set `srun --output ... --error ...` to pipe
Expand All @@ -78,7 +78,7 @@ for ((i=1; i<=${NUM_PREFILL_WORKERS}; i++)); do
--nodes "${NUM_PREFILL_NODES}" \
--ntasks-per-node "${NUM_GPUS_PER_NODE}" \
--jobid "${SLURM_JOB_ID}" \
/mnt/examples/multimodal/scripts/start_trtllm_worker.sh &
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
done

for ((i=1; i<=${NUM_DECODE_WORKERS}; i++)); do
Expand All @@ -98,5 +98,5 @@ for ((i=1; i<=${NUM_DECODE_WORKERS}; i++)); do
--nodes "${NUM_DECODE_NODES}" \
--ntasks-per-node "${NUM_GPUS_PER_NODE}" \
--jobid "${SLURM_JOB_ID}" \
/mnt/examples/multimodal/scripts/start_trtllm_worker.sh &
/mnt/examples/basics/multinode/trtllm/start_trtllm_worker.sh &
done
Loading