<?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 Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904017#M11515</link>
    <description>&lt;P&gt;Andrey,&lt;/P&gt;
&lt;P&gt;no modifications to MKL, besides that we copy all the headers and libraries to a single directory.&lt;/P&gt;
&lt;P&gt;The test on windows 7 is done (not by me) with the attached VS project files.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Feb 2010 17:22:39 GMT</pubDate>
    <dc:creator>ruebe</dc:creator>
    <dc:date>2010-02-03T17:22:39Z</dc:date>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904007#M11505</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I have&lt;/P&gt;
&lt;P&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;MATH.H&gt;&lt;BR /&gt;#include "mkl_vml.h"&lt;BR /&gt;#include "mkl_service.h"&lt;BR /&gt;&lt;BR /&gt;#define N 4&lt;BR /&gt;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt; double a&lt;N&gt; = {0.1, 0.2, 0.3, 0.4};&lt;BR /&gt; double b&lt;N&gt;, y&lt;N&gt;;&lt;BR /&gt; MKL_INT n = N, i;&lt;BR /&gt; MKLVersion ver;&lt;BR /&gt;&lt;BR /&gt; MKLGetVersion(&amp;amp;ver);&lt;BR /&gt; printf("\\nMKL Version = %d.%d.%d\\n\\n", ver.MajorVersion, ver.MinorVersion, ver.UpdateVersion);&lt;BR /&gt;&lt;BR /&gt; for (i = 0; i &amp;lt; n; i++) b&lt;I&gt; = a&lt;I&gt; - 0.05;&lt;BR /&gt;&lt;BR /&gt; vdSub(n, a, b, y);&lt;BR /&gt;&lt;BR /&gt; for (i = 0; i &amp;lt; n; i++)&lt;BR /&gt; printf("a[%d] - b[%d] = %f - %f = %f\\n", i, i, a&lt;I&gt;, b&lt;I&gt;, y&lt;I&gt;);&lt;BR /&gt;&lt;BR /&gt; return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/N&gt;&lt;/N&gt;&lt;/N&gt;&lt;/MATH.H&gt;&lt;/STDIO.H&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;MATH.H&gt;&lt;BR /&gt;#include "mkl_vml.h"&lt;BR /&gt;#include "mkl_service.h"&lt;BR /&gt;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt; double a[2] = {0.2, 0.3}, y[2];&lt;BR /&gt; MKL_INT n = 2, mod, accm, fpum, errm;&lt;BR /&gt; MKLVersion ver;&lt;BR /&gt;&lt;BR /&gt; MKLGetVersion(&amp;amp;ver);&lt;BR /&gt; printf("\\nMKL Version = %d.%d.%d\\n", ver.MajorVersion, ver.MinorVersion, ver.UpdateVersion);&lt;BR /&gt;&lt;BR /&gt; mod = vmlGetMode();&lt;BR /&gt; accm = vmlGetMode() &amp;amp; VML_ACCURACY_MASK;&lt;BR /&gt; fpum = vmlGetMode() &amp;amp; VML_FPUMODE_MASK;&lt;BR /&gt; errm = vmlGetMode() &amp;amp; VML_ERRMODE_MASK;&lt;BR /&gt;&lt;BR /&gt; /*&lt;BR /&gt; printf("mod = %d\\n", mod);&lt;BR /&gt; printf("accm = %d\\n", accm);&lt;BR /&gt; printf("fpum = %d\\n", fpum);&lt;BR /&gt; printf("errm = %d\\n", errm);&lt;BR /&gt; */&lt;BR /&gt;&lt;BR /&gt; vdInv(n, a, y);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; printf("Compute Power[{0.2, 0.3}, -1] using vdInv.\\n");&lt;BR /&gt; printf("answer = {%f, %f}\\n\\n", y[0], y[1]);&lt;BR /&gt;&lt;BR /&gt; return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;/MATH.H&gt;&lt;/STDIO.H&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;with the following make file&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;# MKL static linking&lt;BR /&gt;MKLLIB = -Wl,--start-group $(MKLDIR)/libmkl_intel_lp64.a \\&lt;BR /&gt; $(MKLDIR)/libmkl_intel_thread.a $(MKLDIR)/libmkl_core.a -Wl,--end-group \\&lt;BR /&gt; -L$(MKLDIR) -liomp5 -lpthread&lt;BR /&gt;&lt;BR /&gt;CC = gcc&lt;BR /&gt;CXX = g++&lt;BR /&gt;CFLAGS = -g -O0 -Wall -I$(MKLDIR) &lt;BR /&gt;LDFLAGS =-g -O0 $(MKLLIB) -lm &lt;BR /&gt;&lt;BR /&gt;all : vdinv vdsub&lt;BR /&gt;&lt;BR /&gt;vdinv : vdinv.o&lt;BR /&gt; $(CC) -o vdinv vdinv.o $(LDFLAGS)&lt;BR /&gt;&lt;BR /&gt;vdinv.o : vdinv.c&lt;BR /&gt; $(CC) -c $(CFLAGS) vdinv.c&lt;BR /&gt;&lt;BR /&gt;vdsub : vdsub.o&lt;BR /&gt; $(CC) -o vdsub vdsub.o $(LDFLAGS)&lt;BR /&gt;&lt;BR /&gt;vdsub.o : vdsub.c&lt;BR /&gt; $(CC) -c $(CFLAGS) vdsub.c&lt;BR /&gt;&lt;BR /&gt;clean :&lt;BR /&gt; rm -vf *.o&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I compile&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;gcc -c -g -O0 -Wall -I/Components/MKL/10.2/Linux-x86-64/vendor vdinv.c&lt;BR /&gt;gcc -o vdinv vdinv.o -g -O0 -Wl,--start-group /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_intel_lp64.a /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_intel_thread.a /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_core.a -Wl,--end-group -L/Components/MKL/10.2/Linux-x86-64/vendor -liomp5 -lpthread -lm &lt;BR /&gt;gcc -c -g -O0 -Wall -I/Components/MKL/10.2/Linux-x86-64/vendor vdsub.c&lt;BR /&gt;gcc -o vdsub vdsub.o -g -O0 -Wl,--start-group /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_intel_lp64.a /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_intel_thread.a /Components/MKL/10.2/Linux-x86-64/vendor/libmkl_core.a -Wl,--end-group -L/Components/MKL/10.2/Linux-x86-64/vendor -liomp5 -lpthread -lm&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;when I run these programs&lt;/P&gt;
&lt;P&gt;I get Illegal instructions.&lt;/P&gt;
&lt;P&gt;Program received signal SIGILL, Illegal instruction.&lt;BR /&gt;0x0000000000405406 in mkl_vml_core_e9_vml_dSub ()&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;bt:&lt;/P&gt;
&lt;P&gt;#0 0x0000000000405406 in mkl_vml_core_e9_vml_dSub ()&lt;BR /&gt;#1 0x00000000004028e3 in vdSub ()&lt;BR /&gt;#2 0x00007fffffffde90 in ?? ()&lt;BR /&gt;#3 0x00007fffffffde90 in ?? ()&lt;BR /&gt;#4 0x00007fffffffded0 in ?? ()&lt;BR /&gt;#5 0x00007fffffffdfb0 in ?? ()&lt;BR /&gt;#6 0x0000000000000000 in ?? ()&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;My CPU is an Intel Core2 Duo CPU E8400&lt;/P&gt;
&lt;P&gt;I use&lt;/P&gt;
&lt;P&gt;gcc (SUSE Linux) 4.4.1 [gcc-4_4-branch revision 150839]&lt;/P&gt;
&lt;P&gt;GNU C Library stable release version 2.10.1 (20090918), by Roland McGrath et al.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I tried to set&lt;/P&gt;
&lt;P&gt;MKL_AVX_ENABLE to&lt;/P&gt;
&lt;P&gt;but that did not help, I am not sure it should.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Anysuggestion, how I could fix it, or narrow it further down?&lt;/P&gt;
&lt;P&gt;Thanks a lot&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I think (because of the related CPU but i have not checked) there is a similar problem on a&lt;/P&gt;
&lt;P&gt;Windows 7 (64 bit)&lt;BR /&gt;Intel Core2 Duo T9600 @ 2.80GHz&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2010 19:02:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904007#M11505</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-01T19:02:39Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904008#M11506</link>
      <description>&lt;P&gt;Oliver, thanks for the issue. this is an unknown problem for us and therefore we will try to check it on our side and will back asap.&lt;/P&gt;
&lt;P&gt;Gennady&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 06:55:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904008#M11506</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-02-02T06:55:04Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904009#M11507</link>
      <description>&lt;P&gt;Oliver, can you get us thePackage ID you are using? You can find it into the &lt;MKLROOT&gt;\doc\mklsupport.txt file.&lt;/MKLROOT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 07:03:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904009#M11507</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-02-02T07:03:09Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904010#M11508</link>
      <description>&lt;P&gt;&lt;A jquery1265098221509="103" hoverintent_s="1" hoverintent_t="undefined" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=463431" href="https://community.intel.com/en-us/profile/463431/" class="basic"&gt;ruebe&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;could you provide values of your environment variables (type set at command line) also?&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 08:12:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904010#M11508</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2010-02-02T08:12:17Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904011#M11509</link>
      <description>&lt;P&gt;Hi ruebe,&lt;/P&gt;
&lt;P&gt;Pleaseadd one more printf to your example&lt;/P&gt;
&lt;P&gt; printf(" Processor optimization: %s\n",ver.Processor);&lt;/P&gt;
&lt;P&gt;and provide the outputfor us.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;-Vladimir&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 13:53:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904011#M11509</guid>
      <dc:creator>Vladimir_Lunev</dc:creator>
      <dc:date>2010-02-02T13:53:29Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904012#M11510</link>
      <description>It's checked: Crashes on Windows 7 (64) with Intel Core2 Duo T9600 @ 2.80GHz</description>
      <pubDate>Tue, 02 Feb 2010 14:58:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904012#M11510</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-02T14:58:02Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904013#M11511</link>
      <description>&lt;P&gt;That would be&lt;/P&gt;
&lt;P&gt;l_mkl_p_10.2.3.029&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 14:58:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904013#M11511</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-02T14:58:44Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904014#M11512</link>
      <description>&lt;P&gt;Why don't you tell me waht you want to know and I'll send that information.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 15:01:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904014#M11512</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-02T15:01:21Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904015#M11513</link>
      <description>&lt;P&gt;That's&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Processor optimization: Intel Core 2 Duo Processor&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2010 15:02:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904015#M11513</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-02T15:02:09Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904016#M11514</link>
      <description>&lt;P&gt;I have tried to reproduce your problem at E8400 and I have failed. But we have Windows 2003 server installed at this server.&lt;/P&gt;
&lt;P&gt;Could you provide details - how are you building your tests at Windows?&lt;/P&gt;
&lt;P&gt;Did you make any modifications to MKL libraries?&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2010 09:27:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904016#M11514</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2010-02-03T09:27:13Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904017#M11515</link>
      <description>&lt;P&gt;Andrey,&lt;/P&gt;
&lt;P&gt;no modifications to MKL, besides that we copy all the headers and libraries to a single directory.&lt;/P&gt;
&lt;P&gt;The test on windows 7 is done (not by me) with the attached VS project files.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2010 17:22:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904017#M11515</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-03T17:22:39Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904018#M11516</link>
      <description>&lt;P&gt;If I use the vdsub code with MKL 10.1 on the Linux setup, it works.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2010 14:44:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904018#M11516</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-04T14:44:20Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904019#M11517</link>
      <description>&lt;P&gt;I experience a similar problem under vista 32 and core duo.&lt;/P&gt;
&lt;P&gt;Funny enough a virus scan with DrWeb just popped up a possible infected element&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;C:\Program Files\Intel\Compiler\11.1\054\mkl\ia32\lib\mkl_core.lib&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Doubt...&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2010 23:37:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904019#M11517</guid>
      <dc:creator>kornic</dc:creator>
      <dc:date>2010-02-04T23:37:08Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904020#M11518</link>
      <description>&lt;P&gt;Andrey,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I am wondering if you consider this issue resolved, or if you are still investigating?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 07:12:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904020#M11518</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-08T07:12:19Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904021#M11519</link>
      <description>&lt;P&gt;Ruebe,&lt;/P&gt;
&lt;P&gt;sorry for delay - I`m trying to find servers with similar to your configuration.&lt;/P&gt;
&lt;P&gt;I have built your project and run it successfully at Core 2 duo E7200 andCore i7 extrime 975(both under Windows 7).&lt;/P&gt;
&lt;P&gt;I have attached Release binaries to this post. Could you runthem at yourT9600 Windows7 system? (password for zip file is 12345).&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 13:26:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904021#M11519</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2010-02-08T13:26:29Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904022#M11520</link>
      <description>&lt;P&gt;Andrey,&lt;/P&gt;
&lt;P&gt;thanks, here are the results:&lt;/P&gt;
&lt;P&gt;It opens up a window and prints out :&lt;BR /&gt;MKL Version = 10.2.3&lt;BR /&gt;and then crashes.&lt;BR /&gt;&lt;BR /&gt;Here is the output from the crash window.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Problem signature:&lt;BR /&gt; Problem Event Name: APPCRASH&lt;BR /&gt; Application Name: vdsub-vc90.exe&lt;BR /&gt; Application Version: 0.0.0.0&lt;BR /&gt; Application Timestamp: 4b6f2cb1&lt;BR /&gt; Fault Module Name: vdsub-vc90.exe&lt;BR /&gt; Fault Module Version: 0.0.0.0&lt;BR /&gt; Fault Module Timestamp: 4b6f2cb1&lt;BR /&gt; Exception Code: c000001d&lt;BR /&gt; Exception Offset: 0000000000002c7e&lt;BR /&gt; OS Version: 6.1.7600.2.0.0.256.48&lt;BR /&gt; Locale ID: 1033&lt;BR /&gt; Additional Information 1: 4d92&lt;BR /&gt; Additional Information 2: 4d927d762d14971bbbd7864575416085&lt;BR /&gt; Additional Information 3: 07f5&lt;BR /&gt; Additional Information 4: 07f5ea87781fa57804bb957832da6b03&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2010 17:39:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904022#M11520</guid>
      <dc:creator>ruebe</dc:creator>
      <dc:date>2010-02-08T17:39:43Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904023#M11521</link>
      <description>&lt;P&gt;For those who are interested in the topic that was discussed here:The problem is already fixed and this fix will be available next update (MKL v.10.2 Update5).&lt;BR /&gt; We will announce of this release, when it will be available with the Intel Registration Center.&lt;/P&gt;
--Gennady</description>
      <pubDate>Wed, 03 Mar 2010 11:34:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904023#M11521</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-03-03T11:34:03Z</dc:date>
    </item>
    <item>
      <title>Illegal instruction Intel(R) Core(TM)2 Duo CPU E8400</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904024#M11522</link>
      <description>Hello everyone,&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;SPAN style="line-height: 16px;"&gt;The problem you reported was fixed in the version 10.2 Update 5.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;

&lt;P&gt;This version available for download from intel registration
center: &lt;A href="https://registrationcenter.intel.com/"&gt;https://registrationcenter.intel.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Apr 2010 20:30:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Illegal-instruction-Intel-R-Core-TM-2-Duo-CPU-E8400/m-p/904024#M11522</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-04-23T20:30:28Z</dc:date>
    </item>
  </channel>
</rss>

