Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirzaim/cuda-devcontainer
CUDA Development Container
https://github.com/mirzaim/cuda-devcontainer
cuda devcontainer devcontainers docker remote-development
Last synced: about 1 month ago
JSON representation
CUDA Development Container
- Host: GitHub
- URL: https://github.com/mirzaim/cuda-devcontainer
- Owner: mirzaim
- License: mit
- Created: 2022-07-03T13:45:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-03T18:20:55.000Z (over 2 years ago)
- Last Synced: 2024-11-11T07:38:02.164Z (3 months ago)
- Topics: cuda, devcontainer, devcontainers, docker, remote-development
- Language: Cuda
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CUDA Development Container
This repo configures a CUDA development container.
It packages all you need to build and test CUDA projects in a Linux environment.
If you are unfamiliar with development containers, check out [this page](https://github.com/microsoft/vscode-dev-containers).## Configuration
While the definition itself works unmodified, you can select the version of CUDA and Ubuntu the container
uses by updating the `CUDA_VERSION` and `VARIANT` respectively in the included `devcontainer.json`
(and rebuilding if you've already created the container). The CUDA and Ubuntu version
has to match with image tags found [here](https://hub.docker.com/r/nvidia/cuda).
```
"args": { "VARIANT": "ubuntu20.04", "CUDA_VERSION": "11.6.0" }
```