-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
170 lines (170 loc) · 4.42 KB
/
devcontainer-feature.json
File metadata and controls
170 lines (170 loc) · 4.42 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "CUDA Toolkit",
"id": "cuda",
"version": "26.6.0",
"description": "A feature to install the NVIDIA CUDA Toolkit",
"options": {
"version": {
"type": "string",
"proposals": [
"13.1",
"13.0",
"12.9",
"12.8",
"12.6",
"12.5",
"12.4",
"12.3",
"12.2",
"12.1",
"12.0",
"11.8",
"11.7",
"11.6",
"11.5",
"11.4",
"11.3",
"11.2",
"11.1"
],
"default": "13.1",
"description": "Version of the CUDA Toolkit to install."
},
"cuDNNVersion": {
"type": "string",
"proposals": [
"9",
"8"
],
"default": "8",
"description": "Version of cuDNN to install."
},
"installCompilers": {
"type": "boolean",
"default": true,
"description": "Install NVIDIA CUDA Compiler (nvcc)"
},
"installProfilers": {
"type": "boolean",
"default": true,
"description": "Install NVIDIA NSight Systems Profiler (nsys)"
},
"installCTKLibraries": {
"type": "boolean",
"default": true,
"description": "Shortcut to install all CUDA Toolkit Libraries"
},
"installDevPackages": {
"type": "boolean",
"default": true,
"description": "Whether to install the CUDA dev packages (static libraries + headers)"
},
"installcuDNN": {
"type": "boolean",
"default": false,
"description": "Install CUDA Deep Neural Network Library (cuDNN)"
},
"installcuDSS": {
"type": "boolean",
"default": false,
"description": "Install CUDA Direct Solver of Sparse Linear Systems (cuDSS)"
},
"installcuTensor": {
"type": "boolean",
"default": false,
"description": "Install CUDA Tensor Linear Algebra Library (cuTensor)"
},
"installNCCL": {
"type": "boolean",
"default": true,
"description": "Install NVIDIA Collective Communications Library (NCCL)"
},
"installCUDARuntime": {
"type": "boolean",
"default": true,
"description": "Install CUDA Runtime Library (cudart)"
},
"installNVRTC": {
"type": "boolean",
"default": false,
"description": "Install NVIDIA Runtime Compilation Library (NVRTC)"
},
"installOpenCL": {
"type": "boolean",
"default": false,
"description": "Install NVIDIA CUDA OpenCL Library"
},
"installcuBLAS": {
"type": "boolean",
"default": false,
"description": "Install CUDA Basic Linear Algebra Library (cuBLAS)"
},
"installcuSPARSE": {
"type": "boolean",
"default": false,
"description": "Install CUDA Basic Linear Algebra for Sparse Matrices Library (cuSPARSE)"
},
"installcuFFT": {
"type": "boolean",
"default": false,
"description": "Install CUDA Fast Fourier Transform Library (cuFFT)"
},
"installcuFile": {
"type": "boolean",
"default": false,
"description": "Install CUDA GPUDirect Storage API Library (cuFile)"
},
"installcuRAND": {
"type": "boolean",
"default": false,
"description": "Install CUDA Random Number Generation Library (cuRAND)"
},
"installcuSOLVER": {
"type": "boolean",
"default": false,
"description": "Install CUDA Direct Linear Solvers Library (cuSOLVER)"
},
"installNPP": {
"type": "boolean",
"default": false,
"description": "Install NVIDIA Performance Primitives (NPP)"
},
"installnvJPEG": {
"type": "boolean",
"default": false,
"description": "Install NVIDIA JPEG decoder, encoder, and transcoder library (nvJPEG)"
},
"pruneStaticLibs": {
"type": "boolean",
"default": true,
"description": "Whether to remove static libs from the CUDA Toolkit to save image size"
}
},
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env",
"NVIDIA_VISIBLE_DEVICES": "all",
"NVIDIA_DRIVER_CAPABILITIES": "all"
},
"capAdd": [
"SYS_PTRACE"
],
"securityOpt": [
"seccomp=unconfined"
],
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"nvidia.nsight-vscode-edition"
],
"settings": {
"files.associations": {
"*.cu": "cuda-cpp",
"*.cuh": "cuda-cpp",
"**/libcudacxx/include/**/*": "cpp",
"**/libcudacxx-src/include/**/*": "cpp"
}
}
}
}
}