<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Re:WSL2:intel GPU supported in docker image ? in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1539650#M3378</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you kindly for your progress report !&lt;/P&gt;&lt;P&gt;I look forward to resolving the issue !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks and Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;den6&lt;/P&gt;</description>
    <pubDate>Thu, 02 Nov 2023 01:21:53 GMT</pubDate>
    <dc:creator>den6</dc:creator>
    <dc:date>2023-11-02T01:21:53Z</dc:date>
    <item>
      <title>WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536152#M3368</link>
      <description>&lt;P&gt;I built a docker image using the following Dockerfile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FROM nvcr.io/nvidia/cuda:12.2.0-devel-ubuntu22.04

#########################################
# Tools
#########################################
RUN apt-get update &amp;amp;&amp;amp; apt-get upgrade -y &amp;amp;&amp;amp; \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
wget curl ca-certificates gpg-agent software-properties-common &amp;amp;&amp;amp; \
rm -rf /var/lib/apt/lists/*

#########################################
# intel graphics driver
#########################################
RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
gpg --dearmor --output /usr/share/keyrings/intel-graphics.gpg
RUN echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu jammy client" | \
tee /etc/apt/sources.list.d/intel-gpu-jammy.list

#########################################
# ???
#########################################
#RUN curl -fsSL https://repositories.intel.com/graphics/intel-graphics.key | apt-key add -
#RUN echo "deb [trusted=yes arch=amd64] https://repositories.intel.com/graphics/ubuntu jammy main" &amp;gt; /etc/apt/sources.list.d/intel-graphics.list

RUN apt-get update &amp;amp;&amp;amp; apt-get upgrade -y &amp;amp;&amp;amp; apt-get install -y \
intel-opencl-icd intel-level-zero-gpu level-zero \
intel-media-va-driver-non-free libmfx1 libmfxgen1 libvpl2 \
libegl-mesa0 libegl1-mesa libegl1-mesa-dev libgbm1 libgl1-mesa-dev libgl1-mesa-dri \
libglapi-mesa libgles2-mesa-dev libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo hwinfo clinfo
RUN apt-get install -y \
libigc-dev intel-igc-cm libigdfcl-dev libigfxcmrt-dev level-zero-dev

#########################################
# neo
#########################################
COPY neo.sh /root/
WORKDIR /root
RUN ./neo.sh

#########################################
# OneAPI base/hpc kit
#########################################
RUN curl -fsSL https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg
RUN echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list

RUN apt-get --fix-broken install -y
RUN apt-get update &amp;amp;&amp;amp; apt-get upgrade -y &amp;amp;&amp;amp; apt-get install -y intel-basekit
RUN apt-get update &amp;amp;&amp;amp; apt-get upgrade -y &amp;amp;&amp;amp; apt-get install -y intel-hpckit

RUN useradd render &amp;amp;&amp;amp; gpasswd -a root render&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;neo.sh is as follows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#########################################
# neo.sh
#########################################
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.14828.8/intel-igc-core_1.0.14828.8_amd64.deb
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.14828.8/intel-igc-opencl_1.0.14828.8_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-level-zero-gpu-dbgsym_1.3.26918.9_amd64.ddeb
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-level-zero-gpu_1.3.26918.9_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-opencl-icd-dbgsym_23.30.26918.9_amd64.ddeb
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/intel-opencl-icd_23.30.26918.9_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/libigdgmm12_22.3.0_amd64.deb

wget https://github.com/intel/compute-runtime/releases/download/23.30.26918.9/ww30.sum
sha256sum -c ww30.sum

dpkg -i *.deb&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;docker run command is as follows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;docker run --gpus all --device=/dev/dri -it --rm  $image&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same as this article, sycl-ls does not work in the docker image.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-oneAPI-Base-Toolkit/WSL2-GPU-supported-in-docker-image/m-p/1454995" target="_blank" rel="noopener"&gt;https://community.intel.com/t5/Intel-oneAPI-Base-Toolkit/WSL2-GPU-supported-in-docker-image/m-p/1454995&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 01:20:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536152#M3368</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-10-23T01:20:10Z</dc:date>
    </item>
    <item>
      <title>Re:WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536661#M3369</link>
      <description>&lt;P&gt;Hi Shinji, we are routing your query to the respective team for the further help. They will get back to you as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2023 06:09:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536661#M3369</guid>
      <dc:creator>Vipin_S_Intel</dc:creator>
      <dc:date>2023-10-24T06:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536712#M3370</link>
      <description>&lt;P&gt;Thank you for your prompt reply. I look forward to the support team's response.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 08:31:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1536712#M3370</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-10-24T08:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537138#M3371</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you kindly provide a screenshot of the output when running the following command in WSL2:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;sycl-ls&lt;/LI-CODE&gt;
&lt;P&gt;In order to detect the GPU using sycl-ls in the Docker image, it should be accessible within WSL2. If you haven't installed the oneAPI toolkits yet, please consider installing them in WSL2 before proceeding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;Pendyala Sesha Srinivas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 10:30:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537138#M3371</guid>
      <dc:creator>SeshaP_Intel</dc:creator>
      <dc:date>2023-10-25T10:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537406#M3372</link>
      <description>&lt;P&gt;Screen shot of sycl-ls in WSL2.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sycl-ls-on-WlS2.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/47210i5CC0E6C844C8BC08/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="sycl-ls-on-WlS2.png" alt="sycl-ls-on-WlS2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is in Docker.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sycl-ls-on-Docker.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/47213i30D478E499C015AE/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="sycl-ls-on-Docker.png" alt="sycl-ls-on-Docker.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 00:32:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537406#M3372</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-10-26T00:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537583#M3373</link>
      <description>&lt;P&gt;Sorry I forget to exec "sh oneapi-for-nvidia-gpus-2023.2.1-cuda-12.0-linux.sh”.&lt;/P&gt;&lt;P&gt;After doing that, Nvidia gpu is dtetected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sycl-ls-on-Docker-with-cuda.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/47227iBD4D62723FF18908/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="sycl-ls-on-Docker-with-cuda.png" alt="sycl-ls-on-Docker-with-cuda.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 14:07:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1537583#M3373</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-10-26T14:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1538850#M3374</link>
      <description>&lt;P&gt;Does anyone have any advice?&lt;BR /&gt;I would be very grateful if you could give me some advice.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2023 01:41:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1538850#M3374</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-10-31T01:41:28Z</dc:date>
    </item>
    <item>
      <title>Re:WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1539543#M3375</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We were able to reproduce the issue.&lt;/P&gt;&lt;P&gt;We are working on it internally. We will get back to you soon.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Pendyala Sesha Srinivas&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Nov 2023 18:14:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1539543#M3375</guid>
      <dc:creator>SeshaP_Intel</dc:creator>
      <dc:date>2023-11-01T18:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1539650#M3378</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you kindly for your progress report !&lt;/P&gt;&lt;P&gt;I look forward to resolving the issue !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks and Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;den6&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 01:21:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1539650#M3378</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-11-02T01:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re:WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1549150#M3445</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I heard that OneAPI version 2024 has been released, but when I run ’apt list intel-basekit -a’, 2024 is still not displayed.&lt;BR /&gt;If I were able to update to 2024, would that solve the problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Thanks and Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;den6&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 13:36:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1549150#M3445</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2023-11-30T13:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1566006#M3494</link>
      <description>&lt;P&gt;Hi den6 and dear Intel-Support-Team,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;any updates on this matter or does someone know of a viable workaround?&lt;BR /&gt;&lt;BR /&gt;I have been looking forward to using intel gpus in docker with wsl for a while now and have not been successful myself.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;With kind regards,&lt;BR /&gt;&lt;BR /&gt;sebbalint&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 08:34:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1566006#M3494</guid>
      <dc:creator>sebbalint</dc:creator>
      <dc:date>2024-01-25T08:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1566918#M3495</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi, sebbalint&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;OneAPI 2024.0 is now installed with apt, so I tried it, but unfortunately there was no change in the situation.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I would appreciate it if you could let me know what you have tried.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Thanks and regards.&lt;BR /&gt;den6&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 06:00:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1566918#M3495</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2024-01-29T06:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: WSL2:intel GPU supported in docker image ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1611205#M3928</link>
      <description>&lt;P&gt;Hi everyone !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&lt;SPAN class=""&gt;&amp;nbsp;succeeded in recognizing&amp;nbsp;&lt;/SPAN&gt;the Intel built-in GPU by executing docker run with the following options:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;--device /dev/dxg --volume /usr/lib/wsl:/usr/lib/wsl &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sycl-ls output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;root@dcb28c3f8794:~/work/OneAPI/codeplay# sycl-ls
[opencl:cpu][opencl:0] Intel(R) OpenCL, 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz OpenCL 3.0 (Build 0) [2024.18.6.0.02_160000]
[opencl:gpu][opencl:1] Intel(R) OpenCL Graphics, Intel(R) Graphics [0x9a49] OpenCL 3.0 NEO  [24.13.29138.29]
[level_zero:gpu][level_zero:0] Intel(R) Level-Zero, Intel(R) Graphics [0x9a49] 1.3 [1.3.29138]
[cuda:gpu][cuda:0] NVIDIA CUDA BACKEND, NVIDIA GeForce MX450 7.5 [CUDA 12.4]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 14:02:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/WSL2-intel-GPU-supported-in-docker-image/m-p/1611205#M3928</guid>
      <dc:creator>den6</dc:creator>
      <dc:date>2024-07-01T14:02:21Z</dc:date>
    </item>
  </channel>
</rss>

