-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 907 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "MSCCL++ Dev Container",
"build": {
"dockerfile": "Dockerfile",
"args": {
"BASE_IMAGE": "ghcr.io/microsoft/mscclpp/mscclpp:base-dev-cuda12.8"
}
},
"remoteUser": "mscclpp",
"customizations": {
"vscode": {
"extensions": [
// Python
"ms-python.python",
"ms-python.vscode-pylance",
// C++
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"ms-vscode.cmake-tools"
]
}
},
"privileged": true,
"runArgs": [
"--net=host",
"--ipc=host",
"--gpus=all",
"--ulimit=memlock=-1:-1"
],
"workspaceFolder": "/home/mscclpp/mscclpp",
"workspaceMount": "source=${localWorkspaceFolder},target=/home/mscclpp/mscclpp,type=bind,consistency=cached"
}