Skip to content

Instantly share code, notes, and snippets.

@rahimnathwani
Created March 20, 2017 12:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahimnathwani/40ed3b6f496d377e3d17de4a82393520 to your computer and use it in GitHub Desktop.
Save rahimnathwani/40ed3b6f496d377e3d17de4a82393520 to your computer and use it in GitHub Desktop.
Create GPU instance on Google Cloud, for course.fast.ai
gcloud beta compute instances create gpu-instance-1 \
--machine-type n1-standard-1 --zone asia-east1-a \
--accelerator type=nvidia-tesla-k80,count=1 \
--image-family ubuntu-1604-lts --image-project ubuntu-os-cloud \
--maintenance-policy TERMINATE --no-restart-on-failure \
--boot-disk-size=25GB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment