File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
examples/disaggregated/slurm/benchmark Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments