Skip to content

Commit 3989e9d

Browse files
authored
Merge pull request #61 from AI-Hypercomputer/bvandermoon-recipes
Update MaxText release tag to point to correct link
2 parents b36bb72 + e432cc2 commit 3989e9d

File tree

8 files changed

+18
-9
lines changed

8 files changed

+18
-9
lines changed

training/trillium/GPT3-175B-MaxText/bf16/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

training/trillium/Llama2-70B-MaxText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

training/trillium/Llama3-8B-MaxText/v6e-8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

training/trillium/Llama3.1-405B-MaxText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

training/trillium/Llama3.1-70B-MaxText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
python3 -m benchmarks.benchmark_runner xpk --project=$PROJECT --zone=$ZONE --device_type=v6e-256 --num_slices=1 --cluster_name=${CLUSTER_NAME} --base_output_directory=${OUTPUT_DIR} \
2-
--model_name="llama3_1_70b_8192" --base_docker_image maxtext_base_image
1+
# Run this command from the MaxText root directory using the setup described in the README.
2+
python3 -m benchmarks.benchmark_runner xpk \
3+
--project=$PROJECT \
4+
--zone=$ZONE \
5+
--device_type=v6e-256 \
6+
--num_slices=1 \
7+
--cluster_name=${CLUSTER_NAME} \
8+
--base_output_directory=${OUTPUT_DIR} \
9+
--model_name="llama3_1_70b_8192" \
10+
--base_docker_image=maxtext_base_image
11+

training/trillium/Mistral-7B-MaxText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

training/trillium/Mixtral-8x7B-MaxText/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/m
88
### Install MaxText and Build Docker Image
99
Please follow this [link](https://github.com/AI-Hypercomputer/tpu-recipes/blob/main/training/trillium/MAXTEXT_README.md) to install maxtext and build the docker image. The following variables should be set:
1010

11-
In step 1, use the MaxText [tpu-recipes-v0.1.0](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.0) tag to run this recipe:
11+
In step 1, use the MaxText [tpu-recipes-v0.1.1](https://github.com/AI-Hypercomputer/maxtext/releases/tag/tpu-recipes-v0.1.1) tag to run this recipe:
1212
```
1313
git checkout tpu-recipes-v0.1.1
1414
```

0 commit comments

Comments
 (0)