<?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: second call to oneapi::mkl::sparse::trsv segfaults in a specific case in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445020#M34136</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the response. I didn't know I cannot link with the 32-bit MKL. I updated the Makefile such that 64-bit MKL is used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the problem still persists, in the exact same form as described in the original post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would be glad for additional help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
    <pubDate>Mon, 09 Jan 2023 16:34:23 GMT</pubDate>
    <dc:creator>Jakub_H</dc:creator>
    <dc:date>2023-01-09T16:34:23Z</dc:date>
    <item>
      <title>second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1444740#M34131</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I stumbled upon an issue when solving a symmetric positive definite system using trsv. The matrix is already factorized, the issue is with the solution - trsv with a transposed factor followed by another trsv. The second trsv segfaults in a very specific situation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue" target="_blank" rel="noopener"&gt;https://github.com/jakub-homola/onemkl_trsv_issue&lt;/A&gt;&amp;nbsp;for an example of the code (the relevant part starts at line ~150 in `source.cpp`). To run it, simple `make run` should be enough. I am using the intel oneAPI devcloud, but experienced the exact same problem on our cluster as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the buffer versions of the `oneapi::mkl::sparse::trsv` function. I create a CSR matrix from buffers and a right-hand-side vector. The buffer sent to `trsv` as the right-hand-side vector is a subbuffer of a rhs vector buffer. I call the first `trsv` with the subbuffer as the rhs and a temporary buffer as the solution vector. Then the second `trsv` is called with the temporary buffer as the rhs and the mentioned subbuffer as the solution vector. Before the first call to `trsv`, there is a simple sycl kernel that modifies the first value of the rhs subbuffer data (with a read_write accessor). This code segfaults when run (`./program.x 1 0`). Now the fun part:&lt;/P&gt;
&lt;P&gt;- If I don't submit the one small kernel that modifies the rhs subbuffer, the code runs fine.(`./program.x 0 0`)&lt;/P&gt;
&lt;P&gt;- If I don't use the temporary buffer, but use the subbuffer as both input and output argument of trsv, the code runs fine (`./program.x 1 1`)&lt;/P&gt;
&lt;P&gt;- If I use a regular buffer instead of a subbuffer, the code runs fine (`./program.x 1 2`)&lt;/P&gt;
&lt;P&gt;- If I don't call the first `trsv`, just the second one, the code runs fine&amp;nbsp; (`./program.x 1 3`)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This behaviour seems very strange to me. Am I misunderstanding or missing some major detail, or is there a bug? I would be glad for any help with this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use valgrind on it, the segfault is somewhere in the second call to trsv, I am not able to debug this.&lt;/P&gt;
&lt;P&gt;I use a cpu selector, so the cpu is the device used. All integers used are 32-bit, I use and link with 32-bit-integer MKL. I use the 2023.0 version on the devcloud (but 2022.1.0 we have on our cluster shows the same behaviour).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2023 21:47:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1444740#M34131</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2023-01-07T21:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445015#M34135</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/268313"&gt;@Jakub_H&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks for reaching out to us about your issue. I see you mentioned about linking to 32-bit oneMKL, and I also see it in your &lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue/blob/7da67d28bad1b91c0c8eac52ad04d82f4fd7b56e/Makefile#L5" target="_self"&gt;Makefile#L5&lt;/A&gt;&amp;nbsp;. Our SYCL functionality doesn't support&amp;nbsp;&lt;EM&gt;linking&lt;/EM&gt; to the 32-bit library (&lt;SPAN&gt;-lmkl_intel_lp64). As of now you must link to the 64-bit library (-lmkl_intel_ilp64); you can still use 32-bit integers through our SYCL APIs with that. Please use the exact compilation lines provided by the&amp;nbsp;&lt;A href="https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-link-line-advisor.html" target="_self"&gt;Intel Link Line Advisor&lt;/A&gt; to properly set the compiler flags when compiling and linking against oneMKL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please let us know if making this change fixes your issue?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gajanan&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 16:05:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445015#M34135</guid>
      <dc:creator>Gajanan_Choudhary</dc:creator>
      <dc:date>2023-01-09T16:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445020#M34136</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the response. I didn't know I cannot link with the 32-bit MKL. I updated the Makefile such that 64-bit MKL is used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the problem still persists, in the exact same form as described in the original post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would be glad for additional help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 16:34:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445020#M34136</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2023-01-09T16:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445045#M34138</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/268313"&gt;@Jakub_H&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking deeper into your code, we see that your &lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue/blob/2903fe88f2e7b481c04c786b9701cd4c7fd2ca4a/source.cpp#L195-L208" target="_self"&gt;code block under "&lt;SPAN&gt;trsv_args_variant==&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class="pl-c1"&gt;&lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue/blob/2903fe88f2e7b481c04c786b9701cd4c7fd2ca4a/source.cpp#L195-L208" target="_self"&gt;1"&lt;/A&gt; would never give you correct results (even if it appears to run to completion in your case). What you are trying to do in that code block is pass the RHS and solution vector as the same buffer; that is not an acceptable use case for sparse::trsv(); The RHS and solution vectors must point to different memory locations. We are continuing to look into your code further, but meanwhile, following are a few more things you could look into on your end:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see you are using the transpose operation with sparse::trsv() in your code at&amp;nbsp;&lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue/blob/2903fe88f2e7b481c04c786b9701cd4c7fd2ca4a/source.cpp#L181-L238" target="_self"&gt;main/source.cpp#L181-L238&lt;/A&gt;&amp;nbsp;. The &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-trsv.html" target="_self"&gt;oneMKL documentation for sparse::trsv()&lt;/A&gt;&amp;nbsp;has a note about diagonal values:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;If&amp;nbsp;&lt;/SPAN&gt;oneapi::mkl::diag::nonunit&lt;SPAN&gt;&amp;nbsp;is selected, all diagonal values must be present in the sparse matrix. This is not necessary for the&amp;nbsp;&lt;/SPAN&gt;oneapi::mkl::diag::unit&lt;LI-WRAPPER&gt;&lt;SPAN&gt;&amp;nbsp;case.&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Could you please confirm here if you have all diagonal values in your sparse matrix, since you are using diag::nonunit? The trsv() documentation also says that transpose operation is currently not supported (but it &lt;EM&gt;may&lt;/EM&gt; work in this particular case of using CPU device; we are looking into it and will get back to you about this.). Is TRSV with transpose operation an important part of your planned application?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another thing you could try is calling &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-optimize_trsv.html" target="_self"&gt;oneapi::mkl::sparse::optimize_trsv()&lt;/A&gt;&amp;nbsp;once before each of your first calls to TRSV for trans and non-trans operations and see if that helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please know that the way you are using &lt;SPAN&gt;oneapi::mkl::sparse::set_csr_data and&amp;nbsp;oneapi::mkl::sparse::release_matrix_handle APIs is now deprecated (although it should currently work just fine); please see the &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-set_csr_data.html" target="_self"&gt;set_csr_data&lt;/A&gt; and &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-release_matrix_handle.html" target="_self"&gt;release_matrix_handle&lt;/A&gt; documentation for the new usage. We would also recommend using USM APIs instead of sycl::buffer APIs, although either should work for now.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gajanan&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 18:03:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445045#M34138</guid>
      <dc:creator>Gajanan_Choudhary</dc:creator>
      <dc:date>2023-01-09T18:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445108#M34139</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt; pass the RHS and solution vector as the same buffer; that is not an acceptable use case for sparse::trsv()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thanks for that information. I was actually looking for in the &lt;A href="https://spec.oneapi.io/versions/1.2-rev-1/elements/oneMKL/source/domains/spblas/trsv.html" target="_blank" rel="noopener"&gt;specification&lt;/A&gt;&amp;nbsp;if I can do that or not, but could not find anything. Neither &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-trsv.html" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&amp;nbsp;I could not find it. Experimentally it worked and gave me correct results in another project. I actually asked&amp;nbsp;&lt;A href="https://github.com/oneapi-src/oneAPI-spec/issues/464)" target="_blank" rel="noopener"&gt;a question on the oneapi spec github&lt;/A&gt;&amp;nbsp;to find out if I can actually use trsv that way or not, with no response yet. Could you please direct me to where I can find the information that I cannot use trsv in this way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Could you please confirm here if you have all diagonal values in your sparse matrix?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I can confirm that. The upper-triangular factor I am using is the matrix &lt;/SPAN&gt;&lt;A href="https://github.com/jakub-homola/onemkl_trsv_issue/blob/2903fe88f2e7b481c04c786b9701cd4c7fd2ca4a/U.txt" target="_blank" rel="noopener"&gt;U.txt&lt;/A&gt;&amp;nbsp;also located in the repository, and it contains all diagonal values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;The trsv() documentation also says that transpose operation is currently not supported&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Yes, I noticed it now. I tested it on a GPU, and the program failed with an exception that transposition is not supported. But using a CPU it worked fine, so I kept using it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Is TRSV with transpose operation an important part of your planned application?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Well, this is one of the algorithms for direct solution of a sparse matrix system, as far as I know. You do a cholesky factorization of an SPD matrix, get the upper (or lower) triangular factor, and then solve the system using two calls to trsv. From A*x=b you get Ut*U*x=b (where Ut means U transposed). Solving this involves two calls to trsv, one using the transposed U, and the other one using the non-transposed U. I understand I can use pardiso to solve the whole system on a cpu, but I have a usecase where I need to perform the factorization in a separate library and then solve the system using onemkl. So yes, TRSV with transposed matrix is an important part of my planned application. (although I could probably just manually transpose it and call trsv with nontrans, but it just doesn't seem right)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Another thing you could try is calling&amp;nbsp;&lt;/SPAN&gt;&lt;A class="sub_section_element_selectors" href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-mkl-dpcpp-developer-reference/top/sparse-blas-routines/oneapi-mkl-sparse-optimize_trsv.html" target="_self" rel="nofollow noopener noreferrer"&gt;oneapi::mkl::sparse::optimize_trsv()&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I tried that, and the segfault now actually occured in the optimize_trsv function before the second call to trsv.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Please know that the way you are using&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="sub_section_element_selectors"&gt;oneapi::mkl::sparse::set_csr_data and&amp;nbsp;oneapi::mkl::sparse::release_matrix_handle APIs is now deprecated&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thanks, I did not notice that yet. I will take that into consideration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;We would also recommend using USM APIs instead of sycl::buffer APIs&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I considered the two approaches equivalent, so I chose the buffer approach. I will find more info about the USM approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your response, you have been incredibely helpful in making me a better sycl+onemkl programmer already.&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: I am relatively a newbie in onemkl and sycl, so sorry for all the beginner mistakes &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P&gt;PS: this forum should support Markdown, as it is practically a standard today&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2023 21:06:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1445108#M34139</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2023-01-09T21:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447439#M34177</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Haa the workarounds provided helped? Could you please let us know if you need any other information?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 09:56:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447439#M34177</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-02-02T09:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447440#M34178</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gajanan did give me some helpful information, but not the solution, the problem is not solved yet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 14:00:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447440#M34178</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2023-01-17T14:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447813#M34182</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/154674"&gt;@Gajanan_Choudhary&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is there any update on this? Are you still investigating it? Is the issue on my side, or on oneMKL's side?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not a big priority for me, but it would be nice to know what exactly is wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 09:22:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1447813#M34182</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2023-01-18T09:22:46Z</dc:date>
    </item>
    <item>
      <title>Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1449620#M34215</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for letting us know. We will get back to you soon with an update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jan 2023 14:30:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1449620#M34215</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-01-24T14:30:03Z</dc:date>
    </item>
    <item>
      <title>Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1451856#M34230</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are discussing your issue internally. We will get back to you soon with an update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 31 Jan 2023 17:46:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1451856#M34230</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-01-31T17:46:02Z</dc:date>
    </item>
    <item>
      <title>Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1454135#M34251</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Our development team is investigating your issue. We will get back to you on this soon!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Feb 2023 15:26:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1454135#M34251</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-02-07T15:26:47Z</dc:date>
    </item>
    <item>
      <title>Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1454428#M34258</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for reporting this issue. We were able to reproduce it and we have informed the development team about it.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2023 06:52:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1454428#M34258</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-02-08T06:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570320#M35790</link>
      <description>&lt;P&gt;Hi Jakub,&lt;/P&gt;&lt;P&gt;This issue will be fixed in the next oneAPI toolkit release (i.e., 2024.1 release). The problem was actually in the oneAPI DPC++ compiler side, with some incorrect interaction between sub-buffers of sycl::buffers and host_task() submissions after SYCL kernels. The Intel compiler team has fixed the issue on their end, and it will be available to you in the 2024.1 oneAPI toolkit release.&amp;nbsp;At least in my local tests, this issue appears to be fixed.&lt;/P&gt;&lt;P&gt;After the next oneAPI toolkit release, which should be in the next month or two, we will drop in a reminder for you here to check on your end if your issue is resolved. At that time, please respond back if you can on what you find.&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us about this issue and helping us improve our products!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gajanan&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 20:37:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570320#M35790</guid>
      <dc:creator>Gajanan_Choudhary</dc:creator>
      <dc:date>2024-02-07T20:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570375#M35793</link>
      <description>&lt;P&gt;That's good to hear!&lt;/P&gt;&lt;P&gt;It took a year, but the solution seems to be reached.&lt;/P&gt;&lt;P&gt;I'm looking forward to the update, will test it then and let you know.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:55:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570375#M35793</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2024-02-07T22:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570548#M35796</link>
      <description>&lt;P&gt;just FYI - We will make an announcement about this release on the top of this oneMKL forum when this update will officially available.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Gennady&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 10:30:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1570548#M35796</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2024-02-08T10:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: second call to oneapi::mkl::sparse::trsv segfaults in a specific case</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1625488#M36340</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;so I just updated the example code to 2024.2.0, and I can confirm the issue is fixed, the program no longer segfaults.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2024 15:11:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/second-call-to-oneapi-mkl-sparse-trsv-segfaults-in-a-specific/m-p/1625488#M36340</guid>
      <dc:creator>Jakub_H</dc:creator>
      <dc:date>2024-08-23T15:11:26Z</dc:date>
    </item>
  </channel>
</rss>

