<?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: OpenCL vectorisation issue in OneAPI driver in OpenCL* for CPU</title>
    <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1612939#M7346</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;VMWare is not a validated platform for Intel OpenCL CPU RT.&amp;nbsp; &amp;nbsp;I tested your code on a Ubuntu machine, the result is correct.&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Does your issue occur on all platforms with VMWare? Or does it only occur in your configuration(Ubuntu 18.04 VM + &lt;SPAN&gt;Intel Core i7-6800K&lt;/SPAN&gt;) ?&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jul 2024 08:59:28 GMT</pubDate>
    <dc:creator>cw_intel</dc:creator>
    <dc:date>2024-07-08T08:59:28Z</dc:date>
    <item>
      <title>OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1315362#M6915</link>
      <description>&lt;P&gt;The OneAPI CPU OpenCL drivers (2021.12.6.0.19_160000) seem to have an issue with vectorization resulting in corrupted data. This simple kernel:&lt;/P&gt;
&lt;PRE&gt;__kernel void test(__global float *f, __global float *r) {&lt;BR /&gt;    int i = get_global_id(0);&lt;BR /&gt;&lt;BR /&gt;    r[i] = 0.0;&lt;BR /&gt;    if (f[i] == 1.0F) {&lt;BR /&gt;        r[i] = 1.0F+pow(1.0F, 1.0F);&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;when run over a buffer of length 16 with f equal to:&lt;/P&gt;
&lt;PRE&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1&lt;/PRE&gt;
&lt;P&gt;results in the following values in r:&lt;/P&gt;
&lt;PRE&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3126, 0, 0, 0, 0, 3126&lt;/PRE&gt;
&lt;P&gt;Note the odd 3126 values. Turning off vectorisation using&lt;/P&gt;
&lt;PRE&gt;CL_CONFIG_CPU_VECTORIZER_MODE=1&lt;/PRE&gt;
&lt;P&gt;Results in the correct values:&lt;/P&gt;
&lt;PRE&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2&lt;/PRE&gt;
&lt;P&gt;The issue seems to be caused by adding a value to the function (i.e. here &lt;STRONG&gt;1.0&lt;/STRONG&gt;+pow()), for example this gives an expected result:&lt;/P&gt;
&lt;PRE&gt;__kernel void test(__global float *f, __global float *r) {&lt;BR /&gt;    int i = get_global_id(0);&lt;BR /&gt;&lt;BR /&gt;    r[i] = 0.0;&lt;BR /&gt;    if (f[i] == 1.0F) {&lt;BR /&gt;        r[i] = pow(1.0F, 1.0F);&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;This is on a Ubuntu 18.04 VM with an Intel(R) Core(TM) i7-6800K.&lt;/P&gt;
&lt;P&gt;Is there anywhere I can raise a bug report/ticket? Or is this the correct forum to report?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 12:19:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1315362#M6915</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2021-09-17T12:19:50Z</dc:date>
    </item>
    <item>
      <title>Re:OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1315896#M6916</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide the details of the compiler you are using and complete reproducer code with the steps to reproduce the issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;Is there anywhere I can raise a bug report/ticket? Or is this the correct forum to report?&lt;/P&gt;&lt;P&gt;You can post your queries related to OpenCL in this forum.&lt;/P&gt;&lt;P&gt;Link to the Forum: &lt;A href="https://community.intel.com/t5/GPU-Compute-Software/bd-p/gpu-compute-software" target="_blank"&gt;https://community.intel.com/t5/GPU-Compute-Software/bd-p/gpu-compute-software&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Sep 2021 13:10:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1315896#M6916</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-09-20T13:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1316346#M6917</link>
      <description>&lt;P&gt;Hi Varsha,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for getting back. I should start by saying I tried this on an Ubuntu F4s_v2 (Intel Xeon 8272CL) VM on Azure and had no issues. The above came from an Ubuntu VM running on VMWare on Windows (on a Intel Core i7-6800K). So it might be related to just this particular unusual combination. I'll post the steps to run the test in case you need them:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create Ubuntu 18.04 VM.&lt;/LI&gt;
&lt;LI&gt;Update VM:&lt;BR /&gt;&lt;EM&gt;sudo apt-get update&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Install g++ and pocl to build:&lt;BR /&gt;&lt;EM&gt;sudo apt-get -y install g++ ocl-icd-opencl-dev opencl-headers libpocl2&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Copy &lt;EM&gt;OpenCL_test.cpp&lt;/EM&gt; and &lt;EM&gt;cl2.hpp&lt;/EM&gt; to VM.&lt;/LI&gt;
&lt;LI&gt;Compile test program:&lt;BR /&gt;&lt;EM&gt;g++ OpenCL_test.cpp -o test /usr/lib/x86_64-linux-gnu/libOpenCL.so&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Run test:&lt;BR /&gt;&lt;EM&gt;azure:~$./test&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Platform: Portable Computing Language&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OpenCL: Build log:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Install Intel OpenCL:&lt;BR /&gt;&lt;EM&gt;wget &lt;A href="https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB" target="_blank" rel="noopener"&gt;https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sudo add-apt-repository "deb &lt;A href="https://apt.repos.intel.com/oneapi" target="_blank" rel="noopener"&gt;https://apt.repos.intel.com/oneapi&lt;/A&gt; all main"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sudo apt update&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sudo apt-get install -y --no-install-recommends intel-oneapi-runtime-opencl&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Run test, argument is the platform to use: (note it works on the Azure VM):&lt;BR /&gt;&lt;EM&gt;./test 0&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Platform: Intel(R) OpenCL&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OpenCL: Build log: Compilation started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Compilation done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Linking started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Linking done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Device build started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Options used by backend compiler: -cl-std=CL1.2 -w&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Device build done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Kernel &amp;lt;test&amp;gt; was successfully vectorized (16)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Done.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2&lt;/EM&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;On the VMWare VM this has the error:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;./test 0&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Platform: Intel(R) OpenCL&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OpenCL: Build log: Compilation started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Compilation done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Linking started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Linking done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Device build started&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Options used by backend compiler: -cl-std=CL1.2 -w&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Device build done&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Kernel &amp;lt;test&amp;gt; was successfully vectorized (8)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Done.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3126, 0, 0, 0, 0, 3126&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 02:04:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1316346#M6917</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2021-09-22T02:04:14Z</dc:date>
    </item>
    <item>
      <title>Re:OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1316800#M6918</link>
      <description>&lt;P&gt;OCLdev, Thank you for posting in the Intel® Communities Support.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Just to let you know, the thread was already moved to the proper department, they will further assist you with this matter as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Albert R.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Sep 2021 20:26:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1316800#M6918</guid>
      <dc:creator>Alberto_R_Intel</dc:creator>
      <dc:date>2021-09-23T20:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1612673#M7345</link>
      <description>&lt;P&gt;I reported this 3 years ago now but it's still not fixed in the latest driver (Windows 2024.2.0.980). It's a bit surprising no-one else has had issues with this given it's giving completely corrupted results for the most basic kernel. Please could you point me to the thread this was moved to? Or provide details to give a bug report to the developers?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jul 2024 12:11:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1612673#M7345</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2024-07-06T12:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1612939#M7346</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;VMWare is not a validated platform for Intel OpenCL CPU RT.&amp;nbsp; &amp;nbsp;I tested your code on a Ubuntu machine, the result is correct.&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Does your issue occur on all platforms with VMWare? Or does it only occur in your configuration(Ubuntu 18.04 VM + &lt;SPAN&gt;Intel Core i7-6800K&lt;/SPAN&gt;) ?&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 08:59:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1612939#M7346</guid>
      <dc:creator>cw_intel</dc:creator>
      <dc:date>2024-07-08T08:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1613397#M7347</link>
      <description>&lt;P&gt;Hi, thanks for getting back about this. I initially tried this years ago on an Ubuntu VM but this latest test was on Windows. I've tried it on a couple of machines with these results:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Intel(R) Core(TM) i7-6800K CPU @ 3.40GHz: Failed.&lt;/LI&gt;&lt;LI&gt;Intel(R) Core(TM) i7-6700HQ CPU @&amp;nbsp;2.60GHz: Failed&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Just to confirm this is the very latest version &lt;EM&gt;w_opencl_runtime_p_2024.2.0.980&lt;/EM&gt; downloaded from &lt;A href="https://www.intel.com/content/www/us/en/developer/tools/opencl-cpu-runtime/overview.html" target="_self"&gt;here&lt;/A&gt;. The test exe was compiled with Visual Studio. I haven't tested on Linux yet. The test gives the correct result with the NVidia GPU driver.&lt;/P&gt;&lt;P&gt;The tests were using auto vectorisation&amp;nbsp;CL_CONFIG_CPU_VECTORIZER_MODE=0. Disabling this gives the correct result but obviously disables vectorisation and has a significant performance impact&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 11:33:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1613397#M7347</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2024-07-09T11:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1613679#M7349</link>
      <description>&lt;P&gt;Thank you for the feedback. I can reproduce the issue on Windows. And we will investigate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 03:02:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1613679#M7349</guid>
      <dc:creator>cw_intel</dc:creator>
      <dc:date>2024-07-10T03:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1632341#M7352</link>
      <description>&lt;P&gt;Thanks for looking into it. A couple more bits of info:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Same issue occurs with the latest drivers on Ubuntu 24.04 (intel-oneapi-runtime-opencl).&lt;/LI&gt;&lt;LI&gt;The really strange thing is that this only seems to occur for sizes that are power of 2 (see below).&lt;/LI&gt;&lt;LI&gt;Changing the local workgroup size to 4 results in no error, although this seems very small.&amp;nbsp;However, I'm testing on a 4 core VM - so maybe this is something to do with the issue..?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For the original code (local size of NullRange) the result is correct for a &lt;STRONG&gt;size&lt;/STRONG&gt; of 15:&lt;/P&gt;&lt;PRE&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0&lt;BR /&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0&lt;/PRE&gt;&lt;P&gt;For a &lt;STRONG&gt;size&lt;/STRONG&gt; of 16 the issue occurs:&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1&lt;BR /&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3126, 0, 0, 0, 0, 3126&lt;/PRE&gt;&lt;P&gt;For a &lt;STRONG&gt;size&lt;/STRONG&gt; of 17 it's fine:&lt;/P&gt;&lt;PRE&gt;1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0&lt;BR /&gt;2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It's broken for sizes of 32, 64 etc.&lt;/P&gt;&lt;P&gt;I only noticed this as we break things into power-of-two size chunks, which might explain why others haven't seen this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2024 02:58:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1632341#M7352</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2024-09-20T02:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1640957#M7363</link>
      <description>&lt;P&gt;The original issue on Windows&amp;nbsp; was fixed in the latest version 2025.0 and it was available now.&amp;nbsp; Please test your code with the latest version.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2024 03:06:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1640957#M7363</guid>
      <dc:creator>cw_intel</dc:creator>
      <dc:date>2024-11-04T03:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: OpenCL vectorisation issue in OneAPI driver</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1642347#M7364</link>
      <description>&lt;P&gt;Working now! Thank you very much for the fix.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 00:42:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/OpenCL-vectorisation-issue-in-OneAPI-driver/m-p/1642347#M7364</guid>
      <dc:creator>OCLdev</dc:creator>
      <dc:date>2024-11-11T00:42:35Z</dc:date>
    </item>
  </channel>
</rss>

