From 175f97ed9a2d766ec8cff01fe98d6194ed534297 Mon Sep 17 00:00:00 2001 From: Romke van Dijk Date: Fri, 10 Feb 2023 16:31:23 +0000 Subject: [PATCH 1/2] Adding clinfo in devcontainer. --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index cdceaeb..c44810c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 \ From e82480a31ab819a6d1d795900ce46ad22c8379da Mon Sep 17 00:00:00 2001 From: Romke van Dijk Date: Fri, 10 Feb 2023 16:31:58 +0000 Subject: [PATCH 2/2] Fixing devcontainer json to match the specification --- .devcontainer/devcontainer.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ae72a42..144bb83 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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" }