mirror of
https://github.com/kvcache-ai/custom_flashinfer.git
synced 2026-07-17 09:08:15 +00:00
This enables users to develop inside a prebuilt container. This can save a lot of efforts of setting up cuda toolkit etc. ref: https://code.visualstudio.com/docs/devcontainers/containers
18 lines
303 B
JSON
18 lines
303 B
JSON
{
|
|
"name": "CUDA Development Container",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "."
|
|
},
|
|
"runArgs": [
|
|
"--gpus=all"
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
]
|
|
}
|
|
},
|
|
"remoteUser": "devuser"
|
|
}
|