Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion doc/tutorials/automated/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It is strongly recommended that you work through the [`basic` tutorial](../basic
gcloud container clusters get-credentials tutorial-cluster --project $PROJECT_ID --zone us-central1-b
```
1. A GCS bucket, if you didn't create one in the previous tutorial.
- To create a new GCS bucket, run `gsutil mb -c standard -l us-central1 gs://your-bucket-name`
- To create a new GCS bucket, run `gcloud storage buckets create gs://your-bucket-name --default-storage-class=standard --location=us-central1`

Before you begin, set the following environment variables:

Expand Down
3 changes: 1 addition & 2 deletions doc/tutorials/basic/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Creating Tests with JSonnet Templates

## Prerequisites
Expand Down Expand Up @@ -30,7 +29,7 @@
kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/container-engine-accelerators/master/nvidia-driver-installer/cos/daemonset-preloaded.yaml
```
1. A GCS bucket.
- To create a new GCS bucket, run `gsutil mb -c standard -l us-central1 gs://your-bucket-name`
- To create a new GCS bucket, run `gcloud storage buckets create gs://your-bucket-name --default-storage-class=standard --location=us-central1`

`ml-testing-accelerators` relies heavily on GKE to run workloads, so it is also expected that you should have basic familiarity with creating and running Kubernetes batch workloads. If you need a refresher, see the following documents:

Expand Down
2 changes: 1 addition & 1 deletion tests/jax/common.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ local tpus = import 'templates/tpus.libsonnet';
pip install tensorflow
||| + self.maybeInstallLibtpuV4,
maybeInstallLibtpuV4: if config.accelerator.type == 'tpu' && config.accelerator.version == 4 then |||
gsutil cp gs://cloud-tpu-tpuvm-v4-artifacts/wheels/libtpu/latest/libtpu_tpuv4-0.1.dev20211028-py3-none-any.whl .
gcloud storage cp gs://cloud-tpu-tpuvm-v4-artifacts/wheels/libtpu/latest/libtpu_tpuv4-0.1.dev20211028-py3-none-any.whl .
pip install libtpu_tpuv4-0.1.dev20211028-py3-none-any.whl
||| else '',
},
Expand Down
Loading