|
| 1 | +{ |
| 2 | + "shutdownAction": "stopContainer", |
| 3 | + "image": "rapidsai/devcontainers:25.10-cpp-llvm14-cuda12.0-ubuntu20.04", |
| 4 | + "hostRequirements": { |
| 5 | + "gpu": true |
| 6 | + }, |
| 7 | + "initializeCommand": [ |
| 8 | + "/bin/bash", |
| 9 | + "-c", |
| 10 | + "mkdir -m 0755 -p ${localWorkspaceFolder}/.{aws,cache,config}" |
| 11 | + ], |
| 12 | + "containerEnv": { |
| 13 | + "SCCACHE_REGION": "us-east-2", |
| 14 | + "SCCACHE_BUCKET": "rapids-sccache-devs", |
| 15 | + "AWS_ROLE_ARN": "arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs", |
| 16 | + "HISTFILE": "${containerWorkspaceFolder}/.cache/._bash_history", |
| 17 | + "DEVCONTAINER_NAME": "cuda12.0-llvm14", |
| 18 | + "CUCO_CUDA_VERSION": "12.0", |
| 19 | + "CUCO_HOST_COMPILER": "llvm", |
| 20 | + "CUCO_HOST_COMPILER_VERSION": "14" |
| 21 | + }, |
| 22 | + "workspaceFolder": "/home/coder/${localWorkspaceFolderBasename}", |
| 23 | + "workspaceMount": "source=${localWorkspaceFolder},target=/home/coder/${localWorkspaceFolderBasename},type=bind,consistency=consistent", |
| 24 | + "mounts": [ |
| 25 | + "source=${localWorkspaceFolder}/.aws,target=/home/coder/.aws,type=bind,consistency=consistent", |
| 26 | + "source=${localWorkspaceFolder}/.cache,target=/home/coder/.cache,type=bind,consistency=consistent", |
| 27 | + "source=${localWorkspaceFolder}/.config,target=/home/coder/.config,type=bind,consistency=consistent" |
| 28 | + ], |
| 29 | + "customizations": { |
| 30 | + "vscode": { |
| 31 | + "extensions": [ |
| 32 | + "llvm-vs-code-extensions.vscode-clangd" |
| 33 | + ], |
| 34 | + "settings": { |
| 35 | + "clangd.arguments": [ |
| 36 | + "--compile-commands-dir=${workspaceFolder}/build/latest" |
| 37 | + ] |
| 38 | + } |
| 39 | + } |
| 40 | + }, |
| 41 | + "name": "cuda12.0-llvm14" |
| 42 | +} |
0 commit comments