<?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: Intel(R) Graphics Driver for Windows not found during installation in GPU Compute Software</title>
    <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1288942#M156</link>
    <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We assume that your issue is resolved. If you need any additional information, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Arpita&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jun 2021 11:09:10 GMT</pubDate>
    <dc:creator>ArpitaP_Intel</dc:creator>
    <dc:date>2021-06-21T11:09:10Z</dc:date>
    <item>
      <title>Intel(R) Graphics Driver for Windows not found during installation</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150636#M136</link>
      <description>&lt;P&gt;I am updating my oneAPI to latest 2021.1-beta05 version.&lt;/P&gt;&lt;P&gt;At the begining of the installation, I have the following message.&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&lt;STRONG&gt;Intel(R) Graphics Driver for Windows not found&lt;BR /&gt;For developing and running applications for GPU on this system, a newer version of the Intel(R) Graphics Driver is required. Please reference the GPU driver section at &lt;A href="https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits#installGPUdriver" style="color:blue; text-decoration:underline"&gt;https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits#installGPUdriver&lt;/A&gt; about GPU driver version(s) and installation information.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;But I have latest driver for Intel GPU when I update the driver in Windows 10.&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="gpu.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10654iCF0C07FCF13E14AD/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="gpu.png" alt="gpu.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;How can I make to have known to the installer that my system has Intel Gpu with latest driver.&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;So when I run the following line&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;auto type = device.get_info&amp;lt;info::device::device_type&amp;gt;();&lt;/PRE&gt;

&lt;P&gt;in the code&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;class custom_selector : public device_selector {
public:
    custom_selector() : device_selector() {}
    int operator()(const device&amp;amp; device) const override {
        string device_name = device.get_info&amp;lt;info::device::name&amp;gt;();
        auto type = device.get_info&amp;lt;info::device::device_type&amp;gt;();
        if (device_name.find("Intel") != string::npos) // Selecting Intel Device
            if (type == info::device_type::gpu)
                return 100;
        return -1;
    }
};&lt;/PRE&gt;

&lt;P&gt;It doesn't show GPU.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before this update, I had 2021.1-beta 03 and also had the same message during installation.&lt;/P&gt;
&lt;P&gt;But in running the code, it can find GPU.&lt;/P&gt;
&lt;P&gt;But new version 2021.1-beta05 can't find GPU and always return CPU using the same code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 04:24:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150636#M136</guid>
      <dc:creator>nnain1</dc:creator>
      <dc:date>2020-03-29T04:24:22Z</dc:date>
    </item>
    <item>
      <title>If I set project properties</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150637#M137</link>
      <description>&lt;P&gt;If I set project properties/debugging/environment is set with SYCL_DEVICE_TYPE=CPU&lt;/P&gt;&lt;P&gt;I see only cpu in device.get_info&amp;lt;info::device::device_type&amp;gt;();&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;class custom_selector : public device_selector {
public:
    custom_selector() : device_selector() {}
    int operator()(const device&amp;amp; device) const override {
        string device_name = device.get_info&amp;lt;info::device::name&amp;gt;();
        auto type = device.get_info&amp;lt;info::device::device_type&amp;gt;();
        if (device_name.find("Intel") != string::npos) // Selecting Intel Device
            if (type == info::device_type::gpu)
                return 100;
        return -1;
    }
};&lt;/PRE&gt;

&lt;P&gt;If SYCL_DEVICE_TYPE=GPU is set, device.get_info&amp;lt;info::device::device_type&amp;gt;(); gives&lt;STRONG&gt; SYCL host device&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;If nothing is set,&amp;nbsp;device.get_info&amp;lt;info::device::device_type&amp;gt;(); gives &lt;STRONG&gt;Intel(R) FPGA Emulation Device. &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;This happens only after update to beta05.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2020 14:04:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150637#M137</guid>
      <dc:creator>nnain1</dc:creator>
      <dc:date>2020-03-29T14:04:23Z</dc:date>
    </item>
    <item>
      <title>Hi Nyan,</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150638#M138</link>
      <description>&lt;P&gt;Hi Nyan,&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us!&lt;/P&gt;&lt;P&gt;We tried running the sample code in our environment:&lt;/P&gt;&lt;P&gt;OS Version: Windows10&lt;/P&gt;&lt;P&gt;Basekit Version: Beta05&lt;/P&gt;&lt;P&gt;Graphics: Intel(R) UHD Graphics 620&lt;/P&gt;&lt;P&gt;We are able to execute&amp;nbsp;the sample successfully.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We suggest you to&amp;nbsp;try reinstalling the oneAPI basekit Beta05 and try running the code again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reference:&lt;/P&gt;&lt;P&gt;Download Intel oneAPI&amp;nbsp;Basekit from below link&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/en-us/oneapi/base-kit"&gt;https://software.intel.com/en-us/oneapi/base-kit&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please refer to the Installation guide below:&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits"&gt;https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Goutham&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2020 11:13:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150638#M138</guid>
      <dc:creator>GouthamK_Intel</dc:creator>
      <dc:date>2020-03-30T11:13:21Z</dc:date>
    </item>
    <item>
      <title>I have two GPUs, Intel HD</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150639#M139</link>
      <description>&lt;P&gt;I have two GPUs, Intel HD Graphic and Nvidia. Both drivers are latest.&lt;/P&gt;&lt;P&gt;But when oneAPI is installed, there is&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Intel(R) Graphics Driver for Windows not found &lt;/STRONG&gt;message at the begining of the installation.&lt;/P&gt;&lt;P&gt;Why does the message flag out?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel(R) Graphics Driver for Windows not found&lt;BR /&gt;For developing and running applications for GPU on this system, a newer version of the Intel(R) Graphics Driver is required. Please reference the GPU driver section at &lt;A href="https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits#installGPUdriver" target="_blank"&gt;https://software.intel.com/en-us/articles/installation-guide-for-intel-oneapi-toolkits#installGPUdriver&lt;/A&gt; about GPU driver version(s) and installation information.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2020 15:09:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150639#M139</guid>
      <dc:creator>nnain1</dc:creator>
      <dc:date>2020-03-30T15:09:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nyan,</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150640#M140</link>
      <description>&lt;P&gt;Hi Nyan,&lt;/P&gt;&lt;P&gt;Our team is working on your issue, we have escalated your query to the concerned team.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Goutham&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 10:13:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150640#M140</guid>
      <dc:creator>GouthamK_Intel</dc:creator>
      <dc:date>2020-04-06T10:13:04Z</dc:date>
    </item>
    <item>
      <title>Could you please try building</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150641#M141</link>
      <description>&lt;P&gt;Could you please try building the below program and run the binary which will list all the available DPC++ devices on the machine. Check if the list shows iGPU&lt;/P&gt;&lt;P&gt;#include&amp;lt;CL/sycl.hpp&amp;gt;&lt;BR /&gt;#include&amp;lt;iostream&amp;gt;&lt;BR /&gt;#include&amp;lt;vector&amp;gt;&lt;BR /&gt;#include&amp;lt;string&amp;gt;&lt;BR /&gt;using namespace cl::sycl;&lt;BR /&gt;int main(int argc, char *argv[]){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; std::vector&amp;lt;device&amp;gt; filtered_device_list;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int index=0;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; auto platformlist = platform::get_platforms();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(auto p : platformlist)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; decltype(p.get_devices(info::device_type::all)) devicelist;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; devicelist = p.get_devices(info::device_type::all);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(auto d : devicelist)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; std::string device_vendor = d.get_info&amp;lt;info::device::vendor&amp;gt;();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; std::cout&amp;lt;&amp;lt;d.get_info&amp;lt;info::device::name&amp;gt;()&amp;lt;&amp;lt;"\n";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;BR /&gt;}&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 15:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150641#M141</guid>
      <dc:creator>Anoop_M_Intel</dc:creator>
      <dc:date>2020-04-08T15:21:00Z</dc:date>
    </item>
    <item>
      <title>This is output of the program</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150642#M142</link>
      <description>&lt;P&gt;This is output of the program running at my pc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel(R) FPGA Emulation Device&lt;BR /&gt;Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz&lt;BR /&gt;SYCL host device&lt;/P&gt;&lt;P&gt;D:\oneAPI\WindowsProj\TestGPU\x64\Debug\TestGPU.exe (process 13104) exited with code 0.&lt;BR /&gt;To automatically close the console when debugging stops, enable Tools-&amp;gt;Options-&amp;gt;Debugging-&amp;gt;Automatically close the console when debugging stops.&lt;BR /&gt;Press any key to close this window . . .&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2020 14:16:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150642#M142</guid>
      <dc:creator>nnain1</dc:creator>
      <dc:date>2020-04-13T14:16:22Z</dc:date>
    </item>
    <item>
      <title>I installed the beta05 oneAPI</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150643#M143</link>
      <description>&lt;P&gt;I installed the beta05 oneAPI package and was able to reproduce the behavior which you witnessed. But when I installed the latest Graphics Driver (version 26.20.100.7985), restarted the machine and executed the same program, the iGPU was picked up as an offload device (below is the ouput).&lt;/P&gt;&lt;P&gt;Intel(R) FPGA Emulation Device&lt;BR /&gt;Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz&lt;BR /&gt;Intel(R) HD Graphics 530&lt;BR /&gt;SYCL host device&lt;/P&gt;&lt;P&gt;xxx.exe (process 16412) exited with code 0.&lt;BR /&gt;Press any key to close this window . . .&lt;/P&gt;&lt;P&gt;What is the graphics driver version on your machine? If its not the one listed above, please go to &lt;A href="https://downloadcenter.intel.com/" target="_blank"&gt;https://downloadcenter.intel.com/&lt;/A&gt; to download the latest driver.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 04:58:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150643#M143</guid>
      <dc:creator>Anoop_M_Intel</dc:creator>
      <dc:date>2020-04-15T04:58:21Z</dc:date>
    </item>
    <item>
      <title>I was having the same problem</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150644#M144</link>
      <description>&lt;P&gt;I was having the same problem under Manjaro Linux (Arch based), with kernel 5.6.3 on MSI laptop with i7-8750H and UHD Graphics 630. Intel CPU device shows up, but GPU device did not. Note that ComputeCpp sycl stack did detect the Intel GPU. Upgrading to latest compute runtime from git as of 2020-04-16 (using AUR packages) fixed the issue for me. The version went from 20.13.16352-1 to 20.14.16441.r99.g4306c1ace-1.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 13:47:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150644#M144</guid>
      <dc:creator>Allen__Bryce</dc:creator>
      <dc:date>2020-04-16T13:47:04Z</dc:date>
    </item>
    <item>
      <title>Quote:Anoop M. (Intel) wrote:</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150645#M145</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Anoop M. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I installed the beta05 oneAPI package and was able to reproduce the behavior which you witnessed. But when I installed the latest Graphics Driver (version 26.20.100.7985), restarted the machine and executed the same program, the iGPU was picked up as an offload device (below is the ouput).&lt;/P&gt;&lt;P&gt;Intel(R) FPGA Emulation Device&lt;BR /&gt;Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz&lt;BR /&gt;Intel(R) HD Graphics 530&lt;BR /&gt;SYCL host device&lt;/P&gt;&lt;P&gt;xxx.exe (process 16412) exited with code 0.&lt;BR /&gt;Press any key to close this window . . .&lt;/P&gt;&lt;P&gt;What is the graphics driver version on your machine? If its not the one listed above, please go to &lt;A href="https://downloadcenter.intel.com/"&gt;https://downloadcenter.intel.com/&lt;/A&gt; to download the latest driver.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I updated to latest driver at device manager. Device manager said, my driver is latest.&lt;/P&gt;&lt;P&gt;I can't update anymore.&lt;/P&gt;&lt;P&gt;How did you update the driver?&lt;/P&gt;</description>
      <pubDate>Sat, 18 Apr 2020 03:59:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150645#M145</guid>
      <dc:creator>nnain1</dc:creator>
      <dc:date>2020-04-18T03:59:01Z</dc:date>
    </item>
    <item>
      <title>Quote:Allen, Bryce wrote:</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150646#M146</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Allen, Bryce wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was having the same problem under Manjaro Linux (Arch based), with kernel 5.6.3 on MSI laptop with i7-8750H and UHD Graphics 630. Intel CPU device shows up, but GPU device did not. Note that ComputeCpp sycl stack did detect the Intel GPU. Upgrading to latest compute runtime from git as of 2020-04-16 (using AUR packages) fixed the issue for me. The version went from 20.13.16352-1 to 20.14.16441.r99.g4306c1ace-1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having a similar issue running Manjaro Linux with kernel 5.6.7 on a Dell XPS 13 with an i7-8550U. I'm running the Intel compute runtime 20.16.16582-1 and attempting to install beta 6. ComputeCpp and clinfo both detect the Intel GPU but the Base Toolkit installer does not&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 15:06:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1150646#M146</guid>
      <dc:creator>Hanley__Kenneth</dc:creator>
      <dc:date>2020-05-01T15:06:58Z</dc:date>
    </item>
    <item>
      <title>Re:Intel(R) Graphics Driver for Windows not found ...</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1284801#M147</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please try to update to latest Graphic driver i.e &amp;nbsp;to Intel® Graphics - Windows® 10 DCH Drivers (Version: 27.20.100.9466). Please find the link of the same below&lt;/P&gt;&lt;P&gt;&lt;A href="https://downloadcenter.intel.com/download/30381/Intel-Graphics-Windows-10-DCH-Drivers" rel="noopener noreferrer" target="_blank" style="font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 10.5pt;"&gt;Intel® Graphics - Windows® 10 DCH Drivers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 10.5pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 10.5pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 10.5pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 10.5pt;"&gt;Arpita&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 May 2021 11:09:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1284801#M147</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-05-26T11:09:06Z</dc:date>
    </item>
    <item>
      <title>Re:Intel(R) Graphics Driver for Windows not found ...</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1286766#M153</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know, if your issue is resolved.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpita&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jun 2021 07:07:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1286766#M153</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-06-03T07:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Intel(R) Graphics Driver for Windows not found during installation</title>
      <link>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1288942#M156</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We assume that your issue is resolved. If you need any additional information, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Arpita&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 11:09:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/GPU-Compute-Software/Intel-R-Graphics-Driver-for-Windows-not-found-during/m-p/1288942#M156</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-06-21T11:09:10Z</dc:date>
    </item>
  </channel>
</rss>

