-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
52 lines (52 loc) · 1.32 KB
/
.devcontainer.json
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
{
"build": {
"dockerfile": "Dockerfile",
"context": ".",
},
"postCreateCommand": "poetry install --only=dev",
"runArgs": [
"--shm-size=1g",
"--gpus",
"all",
"--ulimit",
"memlock=-1",
"--ulimit",
"stack=67108864",
"--name",
"stylegan2-torch"
],
"extensions": [
"ms-python.vscode-pylance",
"ms-python.python",
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"nvidia.nsight-vscode-edition",
"trungngo.autoflake",
"kevinkyang.auto-comment-blocks",
"ms-toolsai.jupyter",
"yzhang.markdown-all-in-one",
"christian-kohler.path-intellisense",
"njpwerner.autodocstring",
"redhat.vscode-yaml",
"stackbreak.comment-divider",
"bungcip.better-toml"
],
"settings": {
"C_Cpp.default.includePath": [
"/opt/conda/lib/python3.8/site-packages/torch/include/torch/csrc/api/include/",
"/opt/conda/lib/python3.8/site-packages/torch/include/",
"/opt/conda/include/python3.8/",
"/usr/local/cuda/targets/x86_64-linux/include/"
],
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticSeverityOverrides": {
"reportPrivateImportUsage": "none"
},
"python.sortImports.path": "/home/user/mambaforge/envs/user/bin/isort",
"python.linting.flake8Args": [
"--ignore=E402,E203,W503",
"--max-line-length=120"
],
"terminal.integrated.defaultProfile.linux": "zsh"
},
}