Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \

# Install Intel OpenCL Runtime
RUN cd /tmp \
&& apt install wget lsb-core libnuma-dev pciutils -y \
&& apt install wget lsb-core libnuma-dev pciutils clinfo -y \
&& wget http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/15532/l_opencl_p_18.1.0.015.tgz \
&& tar xzvf l_opencl_p_18.1.0.015.tgz \
&& cd l_opencl_p_18.1.0.015 \
Expand Down
12 changes: 8 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@

"workspaceFolder": "/app/src",
"remoteEnv": {
"NODE_OPTIONS": "--use-openssl-ca",
"NODE_OPTIONS": "--use-openssl-ca"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
},
"extensions": [
"ms-python.python"
],
"remoteUser": "vscode"
}