Automated documentation update (#610)

Automated documentation update [skip ci]

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Samruddhi Khandale 2023-07-11 12:50:29 -07:00 committed by GitHub
parent 07693965d7
commit 0e8940abea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,14 +32,19 @@ Follow [NVIDIA's instructions to install the NVIDIA Container Toolkit](https://d
### Enable GPU passthrough
Enable GPU passthrough to your devcontainer by adding `["--gpus", "all"]` to your devcontainer's `runArgs` property. Here's an example of a devcontainer with this property:
Enable GPU passthrough to your devcontainer by using `hostRequirements`. Here's an example of a devcontainer with this property:
```json
{
"runArgs": ["--gpus", "all"]
"hostRequirements": {
"gpu": "optional"
}
}
```
> Note: Setting `gpu` property's value to `true` will work with GPU machine types, but fail with CPUs. Hence, setting it to `optional` works in both cases. See [schema](https://containers.dev/implementors/json_schema/#base-schema) for more configuration details.
## OS Support