We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c081bf commit 2a33362Copy full SHA for 2a33362
microbenchmarks/README.md
@@ -4,12 +4,17 @@
4
5
Set up a v6e TPU VM for single-chip microbenchmarks:
6
```
7
-gcloud compute tpus tpu-vm create ${TPU_NAME} /
8
- --project ${PROJECT_ID} /
9
- --zone=${ZONE} /
10
- --accelerator-type=v6e-1 /
+export TPU_NAME=your-tpu-vm-name
+export PROJECT_ID=your-gcloud-project-name
+export ZONE=us-east5-b
+
11
+gcloud compute tpus tpu-vm create ${TPU_NAME} \
12
+ --project ${PROJECT_ID} \
13
+ --zone=${ZONE} \
14
+ --accelerator-type=v6e-1 \
15
--version=v2-alpha-tpuv6e
16
17
+Replace the example values for `TPU_NAME`, `PROJECT_ID`, `ZONE` with your own.
18
If needed, see the full list of [available zones](https://cloud.google.com/tpu/docs/regions-zones).
19
20
SSH into the VM:
0 commit comments