Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3c8ac96
Add and use install.sh
v-shobhit Aug 29, 2025
4b5b5fa
Clear the pip constraints
v-shobhit Aug 30, 2025
ead95a6
fail on error
v-shobhit Aug 30, 2025
846ca6f
Make install.sh executable
v-shobhit Sep 1, 2025
1a2b1bc
update enroot/Makefile
v-shobhit Sep 2, 2025
be25635
Address comment
v-shobhit Sep 2, 2025
719d46a
fix end of files
v-shobhit Sep 2, 2025
d444aa4
allow unset variables
v-shobhit Sep 2, 2025
bc55715
Add run_sqsh target
v-shobhit Sep 2, 2025
3877e05
Document enroot flow
v-shobhit Sep 2, 2025
38409bd
fix typo
v-shobhit Sep 2, 2025
4f4bb4d
fix docker build layering
v-shobhit Sep 2, 2025
85bca7c
address comments
v-shobhit Sep 2, 2025
f65f93b
remove temp workaround
v-shobhit Sep 2, 2025
91fc4e1
add vars
v-shobhit Sep 2, 2025
8b0171f
clean up srun command
v-shobhit Sep 2, 2025
981d489
clean up
v-shobhit Sep 2, 2025
762a66b
fix variable export
v-shobhit Sep 2, 2025
82bddf6
Merge branch 'main' into dev/shobhitv/shell-build-ctx
nvzhihanj Sep 3, 2025
ec3cf54
address comment
v-shobhit Sep 3, 2025
67fcaba
attempt fix CI
v-shobhit Sep 3, 2025
134d831
Merge branch 'main' into dev/shobhitv/shell-build-ctx
v-shobhit Sep 6, 2025
349e17d
Merge branch 'main' into dev/shobhitv/shell-build-ctx
nvzhihanj Sep 8, 2025
3ee39e5
Update current_image_tags.properties
v-shobhit Sep 9, 2025
80b542e
Merge branch 'main' into dev/shobhitv/shell-build-ctx
v-shobhit Sep 9, 2025
faf0a66
Update current_image_tags.properties
v-shobhit Sep 9, 2025
6ba3720
address review
v-shobhit Sep 9, 2025
0148f97
review - keep pytorch comment
v-shobhit Sep 9, 2025
a387c11
Update install.sh
v-shobhit Sep 9, 2025
39d02b3
Update install.sh
v-shobhit Sep 9, 2025
42f44b0
Update Dockerfile.multi
v-shobhit Sep 9, 2025
b27a7b8
TensorRT-LLM -> TensorRT LLM
v-shobhit Sep 9, 2025
6c66a1c
Update Dockerfile.multi
v-shobhit Sep 9, 2025
a80a5c4
Update Dockerfile.multi
v-shobhit Sep 9, 2025
6318484
remove hyphen
v-shobhit Sep 10, 2025
39b1df3
add missing 'rm'
v-shobhit Sep 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fail on error
Signed-off-by: Shobhit Verma <shobhitv@nvidia.com>
  • Loading branch information
v-shobhit committed Sep 2, 2025
commit ead95a6d435a1211ae58d4cd68dac7b0fe01ecde
7 changes: 1 addition & 6 deletions docker/common/install.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/bin/bash

echo "TRT_VER: $TRT_VER"
echo "CUDA_VER: $CUDA_VER"
echo "CUDNN_VER: $CUDNN_VER"
echo "NCCL_VER: $NCCL_VER"
echo "CUBLAS_VER: $CUBLAS_VER"
set -Eeuo pipefail

# Default values
base=0
Expand Down