Skip to content

Commit

Permalink
Allow native GPU types
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored Jun 6, 2022
1 parent 1559f48 commit 195351c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/cml/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -533,9 +533,9 @@ exports.builder = (yargs) =>
},
cloudGpu: {
type: 'string',
choices: ['nogpu', 'k80', 'v100', 'tesla'],
coerce: (val) => (val === 'nogpu' ? undefined : val),
description: 'GPU type.'
description:
'GPU type. Choices: [k80, v100]. Also supports native types like e.g. nvidia-tesla-t4',
coerce: (val) => (val === 'nogpu' ? undefined : val)
},
cloudHddSize: {
type: 'number',
Expand Down

2 comments on commit 195351c

@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

@0x2b3bfa0
Copy link
Member Author

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.