<?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: dsyev crashes on a simple matrix in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747296#M37570</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reporting this issue. I can reproduce it on my side. The oneMKL 2025.3 release doesn't have this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are currently working on it. I will keep you posted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Fengrui&lt;/P&gt;</description>
    <pubDate>Fri, 08 May 2026 16:55:12 GMT</pubDate>
    <dc:creator>Fengrui</dc:creator>
    <dc:date>2026-05-08T16:55:12Z</dc:date>
    <item>
      <title>dsyev crashes on a simple matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747280#M37569</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for solving the &lt;A href="https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ztrsm-crashes-on-some-inputs-with-the-debug-flags/td-p/1741016/jump-to/first-unread-message" target="_self"&gt;previous issue&lt;/A&gt;. I can confirm that it has indeed been fixed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With MKL 2026.0 we encountered another issue: when trying to calculate the eigenvalues of a simple matrix with dsyev, we get floating divide by zero. The MWE is below:&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;program dsyev_example
  implicit none

  real*8 :: matrix(3,3), ev(3), work(8)
  integer :: info

  matrix(:, 1) = (/523.720904015851,   0.0,              0.0              /).
  matrix(:, 2) = (/-87.7269993344388,  509.765510517387, 0.0              /)
  matrix(:, 3) = (/-87.7269993344388, -114.410201478550, 509.765510517387 /)

  call dsyev( 'V', 'U', 3, matrix, 3, ev, work, 8, info )

  print *, "Eigenvalues:"
  print *, ev

end program dsyev_example&lt;/LI-CODE&gt;&lt;P&gt;When compiling this with `-fpe0`, we get&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="none"&gt;forrtl: error (73): floating divide by zero
Image              PC                Routine            Line        Source             
libc.so.6          0000126CD7845330  Unknown               Unknown  Unknown
libmkl_core.so.3   0000126CD8EFA69F  mkl_lapack_dlaq5      Unknown  Unknown
libmkl_core.so.3   0000126CD8FAB391  mkl_lapack_dsteqr     Unknown  Unknown
libmkl_core.so.3   0000126CD8FB21C7  mkl_lapack_dsyev      Unknown  Unknown
libmkl_intel_lp64  0000126CDFE6A1D6  dsyev_                Unknown  Unknown
a.out              00000000004053A5  Unknown               Unknown  Unknown
a.out              000000000040528D  Unknown               Unknown  Unknown
libc.so.6          0000126CD782A1CA  Unknown               Unknown  Unknown
libc.so.6          0000126CD782A28B  __libc_start_main     Unknown  Unknown
a.out              00000000004051A5  Unknown               Unknown  Unknown&lt;/LI-CODE&gt;&lt;P&gt;MKL 2025.3 and 2026.0 without `-mpe0` give the same correct results:&lt;/P&gt;&lt;LI-CODE lang="none"&gt; Eigenvalues:
   319.854583405053        599.221603728736        624.175704956055    &lt;/LI-CODE&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2026 13:24:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747280#M37569</guid>
      <dc:creator>ansobolev</dc:creator>
      <dc:date>2026-05-08T13:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: dsyev crashes on a simple matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747296#M37570</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reporting this issue. I can reproduce it on my side. The oneMKL 2025.3 release doesn't have this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are currently working on it. I will keep you posted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Fengrui&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2026 16:55:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747296#M37570</guid>
      <dc:creator>Fengrui</dc:creator>
      <dc:date>2026-05-08T16:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: dsyev crashes on a simple matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747335#M37576</link>
      <description>&lt;P&gt;It turns out to be a known issue. It has been fixed and fix will be included in the next oneMKL release.&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2026 22:47:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747335#M37576</guid>
      <dc:creator>Fengrui</dc:creator>
      <dc:date>2026-05-08T22:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: dsyev crashes on a simple matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747483#M37579</link>
      <description>&lt;P&gt;Do you mean 2026.0.1 or 2026.1.0 by &lt;EM&gt;the next release&lt;/EM&gt;? &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2026 07:56:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747483#M37579</guid>
      <dc:creator>ansobolev</dc:creator>
      <dc:date>2026-05-11T07:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: dsyev crashes on a simple matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747533#M37582</link>
      <description>&lt;P&gt;According to the current plan, that would be the next update release, 2026.1.0.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2026 14:25:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dsyev-crashes-on-a-simple-matrix/m-p/1747533#M37582</guid>
      <dc:creator>Fengrui</dc:creator>
      <dc:date>2026-05-11T14:25:25Z</dc:date>
    </item>
  </channel>
</rss>

