<?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: Segmentation fault in dsyevr. in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863429#M7682</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;Valery,&lt;BR /&gt;the segmentaion problem was reproduced on RHEL 4, but no problem on win32. we will investigate the problem and will back to you asap.&lt;BR /&gt;--Gennady&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;Valery,&lt;BR /&gt;the problem you reported has been fixed in the latest MKL v.10.2 Update 2 available now.&lt;BR /&gt;You can download it from intel registratin center.&lt;BR /&gt;The version is shipped with Intel Compiler Proffesional Edition, version 11.1 for Linux ( build 056 ). &lt;BR /&gt;&lt;BR /&gt;See the log i 've got running your test:&lt;/P&gt;
&lt;P&gt;[root@XXXXX 555076]# ./fix.out&lt;/P&gt;
&lt;P&gt;FIRST STEPS&lt;/P&gt;
&lt;P&gt;SECOND STEPS&lt;/P&gt;
&lt;P&gt;THIRD STEPS&lt;/P&gt;
&lt;P&gt;4 STEPS&lt;/P&gt;
&lt;P&gt;-0.600823 0.695387 11.905435&lt;/P&gt;
&lt;P&gt;--Gennady&lt;/P&gt;</description>
    <pubDate>Wed, 07 Oct 2009 05:05:15 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2009-10-07T05:05:15Z</dc:date>
    <item>
      <title>Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863420#M7673</link>
      <description>Hello. I cant make dsyevr work properly. After some tries I wrote simple example of my problem. There are two calls to dsyevr that work and two that don't. But the arguments look fine and differ with working examples &lt;SPAN style="color: gray;"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;too little. I can't understand what's the problem. My MKL version is &lt;/SPAN&gt;&lt;SPAN style="color: gray;"&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;10.2.1.017, and I compile it with command&lt;BR /&gt;icc stuff.c -I"opt/intel/mkl/10.2.1.017/include/" -L"/opt/intel/mkl/10.2.1.017/lib/" -lmkl_core -lmkl_intel_thread -lguide -lpthread -lmkl_lapack -lmkl_intel&lt;BR /&gt;&lt;BR /&gt;Source code (all arrays are of 1000 elements to ensure there is enough memory):&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;MKL_LAPACK.H&gt;&lt;BR /&gt;#include &lt;UNISTD.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main(){&lt;BR /&gt; int n = 3;&lt;BR /&gt; // 1 2 3&lt;BR /&gt; // 2 4 5&lt;BR /&gt; // 3 5 7&lt;BR /&gt; double M[1000] = {1, 2, 3, 2, 4, 5, 3, 5, 7};&lt;BR /&gt; double a,b;&lt;BR /&gt; int i,j;&lt;BR /&gt; double accuracy = 1e-6;&lt;BR /&gt; int m;&lt;BR /&gt; double eigVal[1000];&lt;BR /&gt; double eigVect[1000];&lt;BR /&gt; int isuppz[1000];&lt;BR /&gt; double work[1000];&lt;BR /&gt; int iwork[1000];&lt;BR /&gt; int many = 1000;&lt;BR /&gt; int status = 0;&lt;BR /&gt;&lt;BR /&gt;// First two work:&lt;BR /&gt; a = -100;&lt;BR /&gt; b = 100;&lt;BR /&gt; dsyevr("V", "V", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt; work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt; i = 1; j = 2;&lt;BR /&gt; dsyevr("V", "I", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt; work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt;// Second two make segfaults:&lt;BR /&gt; i = 1; j = 3;&lt;BR /&gt; dsyevr("V", "I", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt; work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt; dsyevr("V", "A", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt; work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt; int k;&lt;BR /&gt; for(k = 0; k &amp;lt; n; k ++){&lt;BR /&gt; printf("%f ", eigVal&lt;K&gt;);&lt;BR /&gt; }&lt;BR /&gt; printf("\n");&lt;BR /&gt;&lt;BR /&gt; return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/K&gt;&lt;/UNISTD.H&gt;&lt;/MKL_LAPACK.H&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Mon, 06 Jul 2009 20:08:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863420#M7673</guid>
      <dc:creator>valeriyfedotov</dc:creator>
      <dc:date>2009-07-06T20:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863421#M7674</link>
      <description>&lt;BR /&gt;
&lt;P&gt;Valery,&lt;BR /&gt;I guess you are trying to work on ia32 architecture, therefore you have to &lt;BR /&gt;1)setting L"/opt/intel/mkl/10.2.1.017/lib/32 &lt;BR /&gt;and&lt;BR /&gt;2) using another linking line:&lt;BR /&gt;-Wl,--start-group -lmkl_intel -lmkl_intel_thread -lmkl_core -Wl,--end-group -liomp5 -lpthread&lt;/P&gt;
&lt;P&gt;As a result your linking line should be like:&lt;/P&gt;
&lt;P&gt;icc stuff.c -I"opt/intel/mkl/10.2.1.017/include/" -L"/opt/intel/mkl/10.2.1.017/lib/32" -Wl,--start-group -lmkl_intel -lmkl_intel_thread -lmkl_core -Wl,--end-group -liomp5 -lpthread&lt;/P&gt;
&lt;P&gt;for more info how to link properly please refer to the KB article: &lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/" target="_blank"&gt;http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/&lt;/A&gt;&lt;BR /&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2009 06:01:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863421#M7674</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-07T06:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863422#M7675</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Thank you. But with this new linking line don't helped with segmentation fault.&lt;BR /&gt;&lt;BR /&gt;Documentation says that when all eigenvalues are computed either by "A" parameter of by "I" parameter with i = 1 and j = n (this lines don't work), the routine references array isuppz, but it seems valid to me.&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jul 2009 06:46:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863422#M7675</guid>
      <dc:creator>valeriyfedotov</dc:creator>
      <dc:date>2009-07-07T06:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863423#M7676</link>
      <description>&lt;BR /&gt;
&lt;P&gt;Well. At the first glance all input parameters are correct.&lt;BR /&gt;Valery, can you check the problem when all arrays will be allocated dynamically.&lt;BR /&gt;For the reproducing the problem - what is the CPU type you are working on?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2009 12:05:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863423#M7676</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-07T12:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863424#M7677</link>
      <description>My distro is Ubuntu 9.04, and processor Core 2 Quad Q9400.&lt;BR /&gt;I have done it with dynamical memory, but segfault remains. Also, it's intresting, when I uncomment bzero call, the program finishes normally.&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;MKL_LAPACK.H&gt;&lt;BR /&gt;#include &lt;UNISTD.H&gt;&lt;BR /&gt;#include &lt;STRING.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main(){&lt;BR /&gt;int n = 3;&lt;BR /&gt;// 1 2 3&lt;BR /&gt;// 2 4 5&lt;BR /&gt;// 3 5 7&lt;BR /&gt;double MM[1000] = {1, 2, 3, 2, 4, 5, 3, 5, 7};&lt;BR /&gt;double *M = (double *) malloc( sizeof(double) * 1000);&lt;BR /&gt;memcpy(M, MM, sizeof(double) * 9);&lt;BR /&gt;//bzero(M, sizeof(double) * 1000);&lt;BR /&gt;double a,b;&lt;BR /&gt;int i,j;&lt;BR /&gt;double accuracy = 1e-6;&lt;BR /&gt;int m;&lt;BR /&gt;double *eigVal = (double *) malloc( sizeof(double) * 1000);&lt;BR /&gt;double *eigVect = (double *) malloc( sizeof(double) * 1000);&lt;BR /&gt;int *isuppz = (int *) malloc( sizeof(int) * 1000);&lt;BR /&gt;double *work = (double *) malloc( sizeof(double) * 1000);&lt;BR /&gt;int *iwork = (int *) malloc( sizeof(int) * 1000);&lt;BR /&gt;int many = 1000;&lt;BR /&gt;int status = 0;&lt;BR /&gt;&lt;BR /&gt;// First two work:&lt;BR /&gt;a = -100;&lt;BR /&gt;b = 100;&lt;BR /&gt;dsyevr("V", "V", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt;work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt;i = 1; j = 2;&lt;BR /&gt;dsyevr("V", "I", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt;work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt;// Second two make segfaults:&lt;BR /&gt;i = 1; j = 3;&lt;BR /&gt;dsyevr("V", "I", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt;work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt;dsyevr("V", "A", "L", &amp;amp;n, M, &amp;amp;n, &amp;amp;a, &amp;amp;b, &amp;amp;i, &amp;amp;j, &amp;amp;accuracy, &amp;amp;m, eigVal, eigVect, &amp;amp;n, isuppz,&lt;BR /&gt;work, &amp;amp;many, iwork, &amp;amp;many, &amp;amp;status);&lt;BR /&gt;&lt;BR /&gt;int k;&lt;BR /&gt;for(k = 0; k &amp;lt; n; k ++){&lt;BR /&gt;printf("%f ", eigVal&lt;K&gt;);&lt;BR /&gt;}&lt;BR /&gt;printf("n");&lt;BR /&gt;&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/K&gt;&lt;/STRING.H&gt;&lt;/UNISTD.H&gt;&lt;/MKL_LAPACK.H&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Tue, 07 Jul 2009 13:09:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863424#M7677</guid>
      <dc:creator>valeriyfedotov</dc:creator>
      <dc:date>2009-07-07T13:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863425#M7678</link>
      <description>&lt;DIV style="margin:0px;"&gt;See, the list of officially supported operating systems: &lt;BR /&gt;..&lt;BR /&gt;Ubuntu* 8.10 (IA-32 / Intel 64) &lt;BR /&gt;&lt;BR /&gt;But  I will check the problem and will back if any upadates.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jul 2009 13:18:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863425#M7678</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-07T13:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863426#M7679</link>
      <description>&lt;P&gt;btw, originally i checked the problem on win32 and got the following output:&lt;BR /&gt;&lt;STRONG&gt;-0.600823 0.695387 11.905435&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;Do you have the similar results on ubuntu?&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2009 13:22:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863426#M7679</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-07T13:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863427#M7680</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;btw, originally i checked the problem on win32 and got the following output:&lt;BR /&gt;&lt;STRONG&gt;-0.600823 0.695387 11.905435&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;Do you have the similar results on ubuntu?&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;No, I have got &lt;STRONG&gt;-0.247820, 0.338816, 11.908962&lt;/STRONG&gt;. But I checked them with maxima and online solvers, they are correct.&lt;BR /&gt;&lt;BR /&gt;For myself, I made a = -1e20 and b = 1e20 with "V" option, and make error in my subroutine if dsyevr doesn't find all values.&lt;BR /&gt;&lt;BR /&gt;And I will try it in Ubuntu 8.10 this week.&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jul 2009 13:39:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863427#M7680</guid>
      <dc:creator>valeriyfedotov</dc:creator>
      <dc:date>2009-07-07T13:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863428#M7681</link>
      <description>&lt;DIV&gt;
&lt;DIV id="quote_reply"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/434638"&gt;valeriyfedotov&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;No, I have got &lt;STRONG&gt;-0.247820, 0.338816, 11.908962&lt;/STRONG&gt;. But I checked them with maxima and online solvers, they are correct.&lt;BR /&gt;&lt;BR /&gt;For myself, I made a = -1e20 and b = 1e20 with "V" option, and make error in my subroutine if dsyevr doesn't find all values.&lt;BR /&gt;&lt;BR /&gt;And I will try it in Ubuntu 8.10 this week.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Valery,&lt;BR /&gt;the segmentaion problem was reproduced on RHEL 4, but no problem on win32. we will investigate the problem and will back to you asap.&lt;BR /&gt;--Gennady&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jul 2009 13:37:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863428#M7681</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-09T13:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Segmentation fault in dsyevr.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863429#M7682</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;Valery,&lt;BR /&gt;the segmentaion problem was reproduced on RHEL 4, but no problem on win32. we will investigate the problem and will back to you asap.&lt;BR /&gt;--Gennady&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;Valery,&lt;BR /&gt;the problem you reported has been fixed in the latest MKL v.10.2 Update 2 available now.&lt;BR /&gt;You can download it from intel registratin center.&lt;BR /&gt;The version is shipped with Intel Compiler Proffesional Edition, version 11.1 for Linux ( build 056 ). &lt;BR /&gt;&lt;BR /&gt;See the log i 've got running your test:&lt;/P&gt;
&lt;P&gt;[root@XXXXX 555076]# ./fix.out&lt;/P&gt;
&lt;P&gt;FIRST STEPS&lt;/P&gt;
&lt;P&gt;SECOND STEPS&lt;/P&gt;
&lt;P&gt;THIRD STEPS&lt;/P&gt;
&lt;P&gt;4 STEPS&lt;/P&gt;
&lt;P&gt;-0.600823 0.695387 11.905435&lt;/P&gt;
&lt;P&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2009 05:05:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-in-dsyevr/m-p/863429#M7682</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-10-07T05:05:15Z</dc:date>
    </item>
  </channel>
</rss>

