Skip to content

Commit

Permalink
change gpu type
Browse files Browse the repository at this point in the history
  • Loading branch information
SkafteNicki committed Jan 15, 2025
1 parent efbf8c7 commit 2b413af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions s6_the_cloud/using_the_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ We are now going to start using the cloud.
=== "CPU"
```bash
gcloud compute instances create my_instance \
gcloud compute instances create my-instance \
--zone=europe-west1-b \
--image-family=pytorch-latest-cpu \
--image-project=deeplearning-platform-release
Expand All @@ -133,11 +133,11 @@ We are now going to start using the cloud.
=== "GPU"
```bash
gcloud compute instances create my_instance \
gcloud compute instances create my-instance \
--zone=europe-west1-b \
--image-family=pytorch-latest-gpu \
--image-project=deeplearning-platform-release \
--accelerator="type=nvidia-tesla-K80,count=1" \
--accelerator="type=nvidia-tesla-V100,count=1" \
--maintenance-policy TERMINATE
```
Expand Down

0 comments on commit 2b413af

Please sign in to comment.