standardize docker build path and set stable mode for all Trillium recipes#223
Open
sivanishwanthm wants to merge 6 commits into
Conversation
Updated the docker build command in the TPU Trillium Llama3.1-70B-MaxText recipes to use the correct script path and MODE argument. - Updated path to: src/dependencies/scripts/docker_build_dependency_image.sh - Updated MODE to: stable - Removed 'bash' prefix as requested. Affected files: - training/trillium/Llama3.1-70B-MaxText/v6e-32/README.md - training/trillium/Llama3.1-70B-MaxText/v6e-64/README.md - training/trillium/Llama3.1-70B-MaxText/v6e-128/README.md - training/trillium/Llama3.1-70B-MaxText/v6e-256/README.md Co-authored-by: sivanishwanthm <192526223+sivanishwanthm@users.noreply.github.com>
…ipes
Updated all training recipe README files in 'training/trillium/' to use a
standardized Docker build command.
- Updated path to: src/dependencies/scripts/docker_build_dependency_image.sh
- Standardized parameters: DEVICE=tpu MODE=stable BASEIMAGE=${BASE_IMAGE}
- Ensured 'bash' prefix is included as requested.
Affected models include GPT3, Gemma3, Llama2, Llama3.1, Mistral, and Mixtral.
Total of 18 recipe files updated.
Co-authored-by: sivanishwanthm <192526223+sivanishwanthm@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR performs a repository-wide update of the docker dependency build path for all Trillium training recipes. It standardizes the script location and enforces the stable mode flag to ensure consistent environment provisioning across different models and scales.
Changes
Path Update: Migrated docker build references to src/dependencies/scripts/docker_build_dependency_image.sh.
Mode Standardization: Forced MODE=stable across all Trillium recipes to prevent experimental or nightly build drift.