<?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:SYCL kernel hangs on long workloads in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1537956#M3360</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for posting on Intel communities.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vankudothu Vaishnavi.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 27 Oct 2023 13:12:46 GMT</pubDate>
    <dc:creator>VaishnaviV_Intel</dc:creator>
    <dc:date>2023-10-27T13:12:46Z</dc:date>
    <item>
      <title>SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1536759#M3358</link>
      <description>&lt;P&gt;This post is basically a duplicate yet condensed version of all that happened on &lt;A href="https://support.codeplay.com/t/sycl-kernel-hangs-and-never-finishes/649" target="_self"&gt;this post&lt;/A&gt; on the codeplay forum.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue where my SYCL kernels hangs and never finishes after it’s been computing for some time (~10s). This only happens when sycl::gpu_selector_v is selected for the sycl::queue command queue. Using sycl::cpu_selector_v shows no issues.&lt;BR /&gt;The kernel only hangs when there is a lot of computations to be done (see the details about LOOP_ITERATION and N below). One detail that might be relevant is that at first, just after launching the program, my laptop is barely usable due to the integrated GPU being used at its maximum. After a few seconds though, my laptop becomes usable again (as if it weren’t computing anything anymore) but the program still is running (and will never stop). At that point, my CPU will show a usage of ~50% (when using sycl::gpu_selector_v) until I decide to manually stop the program.&lt;/P&gt;&lt;P&gt;I managed to reproduce this issue on a simple example:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;sycl/sycl.hpp&amp;gt;
#include &amp;lt;vector&amp;gt;

#define LOOP_ITERATION 10000000
#define N 1000000

int main()
{
    std::vector&amp;lt;float&amp;gt; v(N);

    sycl::queue q{sycl::gpu_selector_v};
    sycl::buffer buf{v};

    q.submit([&amp;amp;](sycl::handler&amp;amp; cgh)
    {
        auto acc {buf.get_access(cgh,sycl::read_write)};

        cgh.parallel_for(N, [=](sycl::id&amp;lt;1&amp;gt; id)
        {
            float x = 0.0f;
            for (int i = 0; i &amp;lt; LOOP_ITERATION; i++)
                x += i / 2;

            acc[id] = x;
        });
    }).wait();

    std::cout &amp;lt;&amp;lt; "Done!" &amp;lt;&amp;lt; std::endl;

    return 0;
}&lt;/LI-CODE&gt;&lt;P&gt;With the code posted above, I can only get the kernel to hang when N * LOOP_ITERATION is &amp;gt; 1 000 000 * 10 000 000. However, the kernel can still hang with lower LOOP_ITERATION (or N) values if we increase the complexity of the code inside the for (int i = 0; i &amp;lt; LOOP_ITERATION; i++) loop:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;#define LOOP_ITERATION (10000000 / 10) //10 times less iterations
#define N 1000000

cgh.parallel_for(N, [=](sycl::id&amp;lt;1&amp;gt; id)
        {
            float x = 0.0f;
            for (int i = 0; i &amp;lt; LOOP_ITERATION; i++)
            {
                x += i / 2;

                float cosine = sycl::cos(sycl::sqrt(x));
                float sine = sycl::sin(x);
                float length = sycl::sqrt(cosine * cosine + sine * sine);

                x /= sycl::cos(length) * sycl::sin(length);
            }

            acc[id] = x;
        });&lt;/LI-CODE&gt;&lt;P&gt;With LOOP_ITERATION divided by 10, the kernel never hangs unless the LOOP_ITERATION loop becomes more computationally demanding.&lt;/P&gt;&lt;P&gt;Sometimes but not always, this runtime error is thrown:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;terminate called after throwing an instance of 'sycl::_V1::runtime_error'
  what():  Native API failed. Native API returns: -14 (PI_ERROR_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST) -14 (PI_ERROR_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST)&lt;/LI-CODE&gt;&lt;P&gt;I tried disabling the GPU hangcheck using &lt;A href="https://www.intel.com/content/www/us/en/docs/oneapi/installation-guide-linux/2023-0/gpu-disable-hangcheck.html" target="_self"&gt;this&lt;/A&gt; guide but to no avail. I also tried writing N to /sys/module/i915/parameters/enable_hangcheck and the solutions proposed &lt;A href="https://devopsx.com/intel-gpu-hang/" target="_blank" rel="noopener nofollow ugc"&gt;here&lt;/A&gt; but none of this changed anything either…&lt;/P&gt;&lt;P&gt;For my immediate use case (ray tracing application where rendering an image with too many samples takes too long and hangs the kernel), there is a way for me to get around this issue by calling multiple smaller kernels (smaller amount of samples) but this isn't really a satisfactory solution, more like a workaround.&lt;/P&gt;&lt;P&gt;If relevant, I attached the output of the execution of the `clinfo` command on my system.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 11:14:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1536759#M3358</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-10-24T11:14:45Z</dc:date>
    </item>
    <item>
      <title>Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1537956#M3360</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for posting on Intel communities.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vankudothu Vaishnavi.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Oct 2023 13:12:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1537956#M3360</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-10-27T13:12:46Z</dc:date>
    </item>
    <item>
      <title>Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1539769#M3379</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Thanks for your patience and understanding.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Could you please try upgrading the GPU driver? A new version of oneAPI 2024.0, will be available by the end of November. It would be great if you could test the new version and let us know if the issue remains the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Vankudothu Vaishnavi.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Nov 2023 09:31:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1539769#M3379</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-11-02T09:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1539828#M3381</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I upgrade my drivers? I'm not sure how to do it on Ubuntu 20.04. I tried adding a PPA following &lt;A href="https://launchpad.net/~kisak/+archive/ubuntu/kisak-mesa" target="_self"&gt;this&lt;/A&gt; post but it didn't change anything regarding my kernel execution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tom Clabault.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 12:41:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1539828#M3381</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-11-02T12:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1540925#M3391</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try following the steps mentioned in the below link,&lt;/P&gt;
&lt;P&gt;&lt;A href="https://dgpu-docs.intel.com/driver/installation.html" target="_blank" rel="noopener"&gt;https://dgpu-docs.intel.com/driver/installation.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;And try with the new oneAPI 2024.0.0 version which is yet to be released this month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Vankudothu Vaishnavi.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 12:18:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1540925#M3391</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-11-06T12:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1541297#M3394</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I followed these installation instructions (for Intel client GPUs) on Ubuntu 20.04 which I am running but my kernel still hangs.&lt;/P&gt;&lt;P&gt;So I just have to wait for the oneAPI version 2024.0.0 to be released then?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2023 08:36:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1541297#M3394</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-11-07T08:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1544804#M3421</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The latest version, oneAPI 2024.0.0, is now accessible. Kindly download the Intel basekit by visiting the following link:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?operatingsystem=window&amp;amp;distributions=online" target="_blank" rel="noopener noreferrer"&gt;https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;After downloading, test it with the latest version and let us know if you are still facing the same issue.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Thanks &amp;amp; Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Vankudothu Vaishnavi.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 06:10:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1544804#M3421</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-11-17T06:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545068#M3424</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I upgraded to oneAPI 2024.0.0 but even after recompiling an example that was hanging before the upgrade, it stills hangs after the upgrade.&lt;/P&gt;&lt;P&gt;I'm afraid the upgrade to 2024.0.0 didn't solve my issue.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2023 19:13:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545068#M3424</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-11-17T19:13:37Z</dc:date>
    </item>
    <item>
      <title>Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545505#M3427</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Thanks for testing it on the latest oneAPI version(2024.0.0).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Could you please provide us with the following details?&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="font-size: inherit;"&gt;Output of sycl-ls&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: inherit;"&gt;Clinfo after upgrading the graphics driver.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Please share us your output screenshot after executing the code.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: inherit;"&gt;Vankudothu Vaishnavi.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Nov 2023 08:48:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545505#M3427</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-11-20T08:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545771#M3428</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here's a screenshot of the output of sycl-ls:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2023-11-20 22-11-20.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/48258i7C7C6C7F6EA5511E/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="Screenshot from 2023-11-20 22-11-20.png" alt="Screenshot from 2023-11-20 22-11-20.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And &lt;A href="https://pastebin.com/zzC7mB67" target="_self"&gt;a pastebin&lt;/A&gt; of the output of clinfo.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 21:15:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1545771#M3428</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-11-20T21:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1547044#M3437</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please share additional information with us?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please set SYCL_PI_TRACE=2 and capture the output logs. You can find details about SYCL_PI_TRACE options at &lt;/SPAN&gt;&lt;A style="font-size: 14px;" href="https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.md#sycl_pi_trace-options" target="_blank" rel="noopener noreferrer"&gt;https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.md#sycl_pi_trace-options&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This would greatly help us.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Vankudothu Vaishnavi.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2023 05:29:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1547044#M3437</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-11-24T05:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1547705#M3442</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;A href="https://pastebin.com/dCvkriEF" target="_self"&gt;Here&lt;/A&gt; is a pastebin of the output I get when running&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SYCL_PI_TRACE=2 ./test_hang_2024.0&lt;/LI-CODE&gt;&lt;P&gt;The last line of the Pastebin:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;UR &amp;lt;--- UrQueue-&amp;gt;executeAllOpenCommandLists()(UR_RESULT_SUCCESS)&lt;/LI-CODE&gt;&lt;P&gt;is the output line I get before the program hangs. No more output is generated afterwards but the program is still running, hung up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 09:08:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1547705#M3442</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-11-27T09:08:56Z</dc:date>
    </item>
    <item>
      <title>Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1550186#M3446</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are working on your issue internally. We'll get back to you soon.&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;Vankudothu Vaishnavi.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Dec 2023 11:32:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1550186#M3446</guid>
      <dc:creator>VaishnaviV_Intel</dc:creator>
      <dc:date>2023-12-04T11:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re:SYCL kernel hangs on long workloads</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1557019#M3471</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have not heard back from you, could you please give me an update?&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Sat, 23 Dec 2023 11:32:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/SYCL-kernel-hangs-on-long-workloads/m-p/1557019#M3471</guid>
      <dc:creator>TomClabault</dc:creator>
      <dc:date>2023-12-23T11:32:04Z</dc:date>
    </item>
  </channel>
</rss>

