Skip to content

Commit 82cdcb2

Browse files
committed
Install devel dependency
Signed-off-by: Kaiyu Xie <[email protected]>
1 parent 19ac88d commit 82cdcb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/disaggregated/slurm/benchmark/disaggr_torch.slurm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ if [ -n "${trtllm_wheel_path}" ]; then
8686
if ! srun --container-name=${container_name} \
8787
--container-mounts=${container_mount} --no-container-mount-home \
8888
--mpi=pmix --overlap -N $SLURM_NNODES --ntasks-per-node=1 \
89-
bash -c "pip install ${trtllm_wheel_path}" \
89+
bash -c "pip install ${trtllm_wheel_path}[devel]" \
9090
&> ${full_logdir}/2_install.log; then
9191
cleanup_on_failure "TensorRT-LLM wheel installation failed. Check ${full_logdir}/2_install.log for details"
9292
fi
@@ -117,7 +117,7 @@ elif [ -d "${trtllm_repo}" ]; then
117117
if ! srun --container-name=${container_name} \
118118
--container-mounts=${container_mount} --no-container-mount-home \
119119
--mpi=pmix --overlap -N $SLURM_NNODES --ntasks-per-node=1 \
120-
bash -c "cd ${trtllm_repo} && pip install -e ." \
120+
bash -c "cd ${trtllm_repo} && pip install -e .[devel]" \
121121
&> ${full_logdir}/2_install.log; then
122122
cleanup_on_failure "TensorRT-LLM installation failed. Check ${full_logdir}/2_install.log for details"
123123
fi

0 commit comments

Comments
 (0)