-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[TRTLLM-6224][infra] Upgrade dependencies to DLFW 25.06 and CUDA 12.9.1 #5678
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
4ee29df
[Infra][TRTLLM-6224] - Upgrade dependencies to DLFW 25.06 and CUDA 12…
yiqingy0 e310735
Update images
yiqingy0 3d0f31b
Update images
yiqingy0 cdefe82
remove WARs
yiqingy0 1c8d877
Update images
yiqingy0 c151e96
reinstall libibverbs-dev to fix libmlx5 issue
yiqingy0 3048ba6
Update images
yiqingy0 d26ce6a
Update images
yiqingy0 68544d9
Update images
yiqingy0 e3cdea5
Update images
yiqingy0 a9482c0
[nvbugs/5376229] - Fix
yiqingy0 7259298
downgrade cuBLAS
yiqingy0 632f431
Update image for cuBLAS downgrade
yiqingy0 1ed330c
fix for review
yiqingy0 5ae470a
fix for triton tag
yiqingy0 2bd936b
fix
yiqingy0 bc5a2a1
fix
yiqingy0 b05ed90
fix
yiqingy0 f451678
change for build SBSA
yiqingy0 e4573c3
fix triton version
yiqingy0 456b262
Merge branch 'main' into dependencies_upgrade
yiqingy0 e5035b4
revert build memory and jobs change
yiqingy0 b8e96d6
fix for review
yiqingy0 7465659
fix for pre-commit
yiqingy0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,5 @@ | ||
| # These vulnerabilities were inherited from the base image (pytorch:25.05-py3) and should be removed when the base image | ||
| # These vulnerabilities were inherited from the base image (pytorch:25.06-py3) and should be removed when the base image | ||
| # is updated. | ||
|
|
||
| # WAR against https://github.com/advisories/GHSA-vqfr-h8mv-ghfj | ||
| h11>=0.16.0 | ||
| # WAR against https://github.com/advisories/GHSA-7cx3-6m66-7c5m | ||
| tornado>=6.5.0 | ||
| # WAR against https://github.com/advisories/GHSA-5rjg-fvgr-3xxf | ||
| setuptools>=78.1.1 | ||
| # WAR against https://github.com/advisories/GHSA-8qvm-5x2c-j2w7 | ||
| protobuf>=4.25.8 | ||
| # WAR against https://github.com/advisories/GHSA-33p9-3p43-82vq | ||
| jupyter-core>=5.8.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Script to get triton short tag from docker/Dockerfile.multi | ||
| # Usage: ./get_triton_tag.sh [llm_root_path] | ||
| # Output: triton short tag to stdout | ||
|
|
||
| set -e | ||
|
|
||
| # Default to current directory if no path provided | ||
| LLM_ROOT="${1:-.}" | ||
|
|
||
| # Default triton tag | ||
| TRITON_SHORT_TAG="main" | ||
|
|
||
| # Path to Dockerfile.multi | ||
| DOCKERFILE_MULTI_PATH="${LLM_ROOT}/docker/Dockerfile.multi" | ||
|
|
||
| # Check if Dockerfile.multi exists | ||
| if [[ -f "$DOCKERFILE_MULTI_PATH" ]]; then | ||
| # Extract TRITON_BASE_TAG from Dockerfile.multi | ||
| TRITON_BASE_TAG_LINE=$(grep -E '^ARG TRITON_BASE_TAG=' "$DOCKERFILE_MULTI_PATH" | tail -n1) | ||
|
|
||
| if [[ -n "$TRITON_BASE_TAG_LINE" ]]; then | ||
| TRITON_BASE_TAG=$(echo "$TRITON_BASE_TAG_LINE" | cut -d'=' -f2) | ||
|
|
||
| if [[ -n "$TRITON_BASE_TAG" ]]; then | ||
| # Remove -py3 suffix and add r prefix | ||
| TRITON_SHORT_TAG="r${TRITON_BASE_TAG%-py3}" | ||
| echo "Using triton tag from Dockerfile.multi: $TRITON_SHORT_TAG" >&2 | ||
| fi | ||
| fi | ||
| else | ||
| echo "Dockerfile.multi not found at $DOCKERFILE_MULTI_PATH" >&2 | ||
| fi | ||
|
|
||
| # Output the triton short tag to stdout | ||
| echo "$TRITON_SHORT_TAG" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.