Skip to content

Commit

Permalink
g2.2xlarge => g4dn.xlarge (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl authored Oct 26, 2021
1 parent 99dce95 commit 2ed8e4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
--cloud-spot \
--cloud aws \
--cloud-region us-west \
--cloud-type g2.2xlarge \
--cloud-type g4dn.xlarge \
--idle-timeout 3600 \
--labels cml-runner-aws-gpu
test_machine_aws:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ deploy-runner:
cml runner \
--cloud=aws \
--cloud-region=us-west \
--cloud-type=g2.2xlarge \
--cloud-type=g4dn.xlarge \
--cloud-spot \
--labels=cml-runner-gpu
test-runner:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ When a workflow requires computational resources (such as GPUs), CML can
automatically allocate cloud instances using `cml-runner`. You can spin up
instances on AWS, Azure, GCP, or Kubernetes.

For example, the following workflow deploys a `p2.xlarge` instance on AWS EC2
For example, the following workflow deploys a `g4dn.xlarge` instance on AWS EC2
and trains a model on the instance. After the job runs, the instance
automatically shuts down.

Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
cml-runner \
--cloud=aws \
--cloud-region=us-west \
--cloud-type=p2.xlarge \
--cloud-type=g4dn.xlarge \
--labels=cml-gpu
train-model:
needs: deploy-runner
Expand All @@ -454,7 +454,7 @@ jobs:
cml-send-comment report.md
```

In the workflow above, the `deploy-runner` step launches an EC2 `p2.xlarge`
In the workflow above, the `deploy-runner` step launches an EC2 `g4dn.xlarge`
instance in the `us-west` region. The `model-training` step then runs on the
newly-launched instance. See [Environment Variables] below for details on the
`secrets` required.
Expand Down

3 comments on commit 2ed8e4d

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Comment

CML watermark

Please sign in to comment.