<?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 New user: overwhelmed in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877544#M9126</link>
    <description>&lt;P&gt;Let me start by saying that I'm not a software programmer by trade, I'm using C as a tool to get some work done. I've got a computationally intensive program that I'm trying to speed up, and it's based around FFTW3 and fftw_complex variable type. I'm working on a quad-core 64 bit machine. I have a few really dumb questions.&lt;/P&gt;&lt;P&gt;My install of MKL is local to me, which makes things more painful.&lt;/P&gt;&lt;P&gt;I've written a really basic test program to attempt to use some of the vector math functionality. I chose to try MulByConj. I'm having a heck of a time figuring out what stuff I need to #include in the program, and what stuff I need to link with the (gcc) compile. Can someone help me out?&lt;/P&gt;&lt;P&gt;The next thing is, how do I reconcile FFTW_COMPLEX type with MKL_complex16 type? FFTW_Complex is compatible with functions like "conj", "cexp" and so on, as well as the usage of the value "I". These functions don't appear to be happy with MKL_complex. Or is this just because I don't have things linked and compiled correctly?&lt;/P&gt;&lt;P&gt;Here's the flavor of what I was trying. I know it's still dumb, but just a comparison of old way vs. new way:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;int main()&lt;BR /&gt;{&lt;BR /&gt; static MKL_Complex16 big1[8192], big2[8192], big3[8192];&lt;BR /&gt; int x;&lt;BR /&gt;&lt;BR /&gt; for (x=0;x&amp;lt;8192;x++)&lt;BR /&gt; {&lt;BR /&gt; big1&lt;X&gt;=53217.1237*(cos(0.73412894791273*x)+I*sin(0.2342356*x));&lt;BR /&gt; big2&lt;X&gt;=8517.1237*(cos(0.77432894791273*x)+I*sin(0.26542356*x));&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; system ("date");&lt;BR /&gt; &lt;BR /&gt; for (x=0;x&amp;lt;8192;x++)&lt;BR /&gt; {&lt;BR /&gt; big3&lt;X&gt;=big1&lt;X&gt;*conj(big2&lt;X&gt;);&lt;BR /&gt; }  &lt;BR /&gt; &lt;BR /&gt; system ("date"); &lt;BR /&gt; &lt;BR /&gt; vzMulByConj(8192,big1,big2,big3);&lt;BR /&gt; &lt;BR /&gt; system ("date");&lt;BR /&gt; &lt;BR /&gt;}&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;Like I said, I'm stumped on what to include and what to link. Thanks for any help.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Sep 2008 21:22:20 GMT</pubDate>
    <dc:creator>chuck37</dc:creator>
    <dc:date>2008-09-29T21:22:20Z</dc:date>
    <item>
      <title>New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877544#M9126</link>
      <description>&lt;P&gt;Let me start by saying that I'm not a software programmer by trade, I'm using C as a tool to get some work done. I've got a computationally intensive program that I'm trying to speed up, and it's based around FFTW3 and fftw_complex variable type. I'm working on a quad-core 64 bit machine. I have a few really dumb questions.&lt;/P&gt;&lt;P&gt;My install of MKL is local to me, which makes things more painful.&lt;/P&gt;&lt;P&gt;I've written a really basic test program to attempt to use some of the vector math functionality. I chose to try MulByConj. I'm having a heck of a time figuring out what stuff I need to #include in the program, and what stuff I need to link with the (gcc) compile. Can someone help me out?&lt;/P&gt;&lt;P&gt;The next thing is, how do I reconcile FFTW_COMPLEX type with MKL_complex16 type? FFTW_Complex is compatible with functions like "conj", "cexp" and so on, as well as the usage of the value "I". These functions don't appear to be happy with MKL_complex. Or is this just because I don't have things linked and compiled correctly?&lt;/P&gt;&lt;P&gt;Here's the flavor of what I was trying. I know it's still dumb, but just a comparison of old way vs. new way:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;int main()&lt;BR /&gt;{&lt;BR /&gt; static MKL_Complex16 big1[8192], big2[8192], big3[8192];&lt;BR /&gt; int x;&lt;BR /&gt;&lt;BR /&gt; for (x=0;x&amp;lt;8192;x++)&lt;BR /&gt; {&lt;BR /&gt; big1&lt;X&gt;=53217.1237*(cos(0.73412894791273*x)+I*sin(0.2342356*x));&lt;BR /&gt; big2&lt;X&gt;=8517.1237*(cos(0.77432894791273*x)+I*sin(0.26542356*x));&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; system ("date");&lt;BR /&gt; &lt;BR /&gt; for (x=0;x&amp;lt;8192;x++)&lt;BR /&gt; {&lt;BR /&gt; big3&lt;X&gt;=big1&lt;X&gt;*conj(big2&lt;X&gt;);&lt;BR /&gt; }  &lt;BR /&gt; &lt;BR /&gt; system ("date"); &lt;BR /&gt; &lt;BR /&gt; vzMulByConj(8192,big1,big2,big3);&lt;BR /&gt; &lt;BR /&gt; system ("date");&lt;BR /&gt; &lt;BR /&gt;}&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;Like I said, I'm stumped on what to include and what to link. Thanks for any help.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2008 21:22:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877544#M9126</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-09-29T21:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877545#M9127</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;P&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Arial;"&gt;Hi chuck37,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Arial;"&gt;What MKL version are you using? Please find MKL_ROOTdocmklsupport.txt file and provide Package ID string.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Arial;"&gt;Ican send to you the test case where you can see how to use &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Verdana;"&gt;vzMulByConj&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Arial;"&gt; and MKL Complex data types by properly way and makefile for building &lt;SPAN style="mso-spacerun: yes;"&gt;&lt;/SPAN&gt;this test.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: black; font-family: Arial;"&gt;--Gennady&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;I've got l_mkl_p_10.0.4.023. Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2008 13:35:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877545#M9127</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-09-30T13:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877546#M9128</link>
      <description>&lt;P&gt;I simplified my program and got it to compile with some random trial and error. I'm seeing no speedup with VML versus brute force for loops:&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;#include "/accts/cemcdowe/intel/mkl/10.0.4.023/include/mkl.h"&lt;/P&gt;&lt;P&gt;#include "/accts/cemcdowe/intel/mkl/10.0.4.023/include/mkl_vml.h"&lt;/P&gt;&lt;P&gt;int main()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;static double big1[67000000], big2[67000000], big3[67000000];&lt;/P&gt;&lt;P&gt;int x,y;&lt;/P&gt;&lt;P&gt;for (x=0;x&amp;lt;67000000;x++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big1&lt;X&gt;=53217.1237*(cos(0.73412894791273*x));&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big2&lt;X&gt;=8517.1237*(cos(0.77432894791273*x));&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&amp;lt;100;y++){&lt;/P&gt;&lt;P&gt;for (x=0;x&amp;lt;67000000;x++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big3&lt;X&gt;=big1&lt;X&gt;*big2&lt;X&gt;;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&amp;lt;100;y++){&lt;/P&gt;&lt;P&gt;vdMul(67000000,big1,big2,big3);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I compiled like:&lt;/P&gt;&lt;P&gt;gcc mkl_test.c -lpthread -L&lt;STUFF&gt;/mkl/10.0.4.023/lib/em64t -lmkl_em64t -lmkl_core -lm -o mkl_test&lt;/STUFF&gt;&lt;/P&gt;&lt;P&gt;Am I doing something wrong? Shouldn't I get some speedup?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2008 15:43:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877546#M9128</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-09-30T15:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877547#M9129</link>
      <description>&lt;DIV style="margin:0px;"&gt;Hi Chuck37,&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;if you works on em64 system - I 've uploaded to this thread Makefile.&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;Please pay attention on libguide.a (out threading library) you didn't link previous time.&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;--Gennady&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2008 13:12:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877547#M9129</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2008-10-01T13:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877548#M9130</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&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;Hi Chuck37,&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;if you works on em64 system - I 've uploaded to this thread Makefile.&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;Please pay attention on libguide.a (out threading library) you didn't link previous time.&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;--Gennady&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Thanks for the reply, but I'm confused, is there a file someplace I should be able to see/access?&lt;/P&gt;&lt;P&gt;Incidentally, I got a complex number example to work, and the vector implementation took at least twice as long:&lt;/P&gt;&lt;PRE&gt;[c-sharp]&lt;PRE&gt;[/c-sharp]&lt;/PRE&gt;&lt;PRE&gt;[c-sharp]&lt;SPAN style="font-size: x-small;"&gt;&lt;P&gt;#define M 128&lt;/P&gt;&lt;P&gt;#define N 3276800&lt;/P&gt;&lt;P&gt;int main()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;static MKL_Complex16 big1&lt;M&gt;, big2&lt;M&gt;, big3&lt;M&gt;;&lt;/M&gt;&lt;/M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;int x,y;&lt;/P&gt;&lt;P&gt;for (x=0;x&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big1&lt;X&gt;.real=53217.1237*cos(0.73412894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big1&lt;X&gt;.imag=53217.1237*cos(0.54812894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big2&lt;X&gt;.real=8517.1237*cos(0.77432894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big2&lt;X&gt;.imag=82359.7923*cos(0.8592894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;for (x=0;x&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big3&lt;X&gt;.real=big1&lt;X&gt;.real*big2&lt;X&gt;.real-big1&lt;X&gt;.imag*big2&lt;X&gt;.imag;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big3&lt;X&gt;.imag=big1&lt;X&gt;.real*big2&lt;X&gt;.imag+big1&lt;X&gt;.imag*big2&lt;X&gt;.real;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date"); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;vzMul(M,big1,big2,big3);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What the heck is going on?  I'll try adding the thread linking like you suggest, but I want to compare apples to apples.  My code is already threaded; I want to see what I can get from the MKL functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I can't figure out how to post legibly on this forum!  All the indents are stripped from my code, and the syntax highlighter thing truncates 75% of what I paste into it.  Now I have no line breaks, and there is no way to preview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help though.&lt;/P&gt;[/c-sharp]&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2008 13:41:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877548#M9130</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-10-01T13:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877549#M9131</link>
      <description>&lt;DIV style="margin:0px;"&gt;Sorry about that last post. This forum software seems to defy all forum software conventions. Here's another paste of the code that shows vzMul taking 2-3x as long as regular for loops. I tried numerous different values for M and N and it's always worse with vzMul:&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV style="margin:0px;"&gt;&lt;SPAN style="font-size: x-small;"&gt;&lt;P&gt;#define M 128&lt;/P&gt;&lt;P&gt;#define N 3276800&lt;/P&gt;&lt;P&gt;int main()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;static MKL_Complex16 big1&lt;M&gt;, big2&lt;M&gt;, big3&lt;M&gt;;&lt;/M&gt;&lt;/M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;int x,y;&lt;/P&gt;&lt;P&gt;for (x=0;x&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big1&lt;X&gt;.real=53217.1237*cos(0.73412894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big1&lt;X&gt;.imag=53217.1237*cos(0.54812894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big2&lt;X&gt;.real=8517.1237*cos(0.77432894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big2&lt;X&gt;.imag=82359.7923*cos(0.8592894791273*x);&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;for (x=0;x&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;big3&lt;X&gt;.real=big1&lt;X&gt;.real*big2&lt;X&gt;.real-big1&lt;X&gt;.imag*big2&lt;X&gt;.imag;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;big3&lt;X&gt;.imag=big1&lt;X&gt;.real*big2&lt;X&gt;.imag+big1&lt;X&gt;.imag*big2&lt;X&gt;.real;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for (y=0;y&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;vzMul(M,big1,big2,big3);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system ("date");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Oct 2008 13:43:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877549#M9131</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-10-01T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877550#M9132</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;Chuck,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;We are updating our forum page so sometimes we are expecting some errors,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;but nevertheless, below I snip from makefile I sent you in previous message:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;+++++++++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;MKLINCLUDE=/opt/intel/mkl/10.0.4.023/include&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;MKLROOT=/opt/intel/mkl/10.0.4.023/lib/em64t&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;all:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-tab-count: 1;"&gt; &lt;/SPAN&gt;gcc&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;-w mkl_test.c -I ${MKLINCLUDE} ${MKLROOT}/libmkl_intel_lp64.a ${MKLROOT}/libmkl_intel_thread.a ${MKLROOT}/libmkl_core.a ${MKLROOT}/libguide.a -lpthread -lm&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;-o test.out&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;clean:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-tab-count: 1;"&gt; &lt;/SPAN&gt;rm -f *.x *.mod &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;+++++++++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;Please try to use this link and let me know the result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2008 14:24:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877550#M9132</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2008-10-01T14:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: New user: overwhelmed</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877551#M9133</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;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;Chuck,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;We are updating our forum page so sometimes we are expecting some errors,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;but nevertheless, below I snip from makefile I sent you in previous message:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;+++++++++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;MKLINCLUDE=/opt/intel/mkl/10.0.4.023/include&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;MKLROOT=/opt/intel/mkl/10.0.4.023/lib/em64t&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;all:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-tab-count: 1;"&gt; &lt;/SPAN&gt;gcc&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;-w mkl_test.c -I ${MKLINCLUDE} ${MKLROOT}/libmkl_intel_lp64.a ${MKLROOT}/libmkl_intel_thread.a ${MKLROOT}/libmkl_core.a ${MKLROOT}/libguide.a -lpthread -lm&lt;SPAN style="mso-spacerun: yes;"&gt; &lt;/SPAN&gt;-o test.out&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;clean:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;&lt;SPAN style="mso-tab-count: 1;"&gt; &lt;/SPAN&gt;rm -f *.x *.mod &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;+++++++++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal" style="margin: 0in 0in 0pt;"&gt;&lt;SPAN style="font-size: 10pt; color: maroon; font-family: Verdana;"&gt;Please try to use this link and let me know the result.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;--Gennady&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;That worked, thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2008 16:03:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/New-user-overwhelmed/m-p/877551#M9133</guid>
      <dc:creator>chuck37</dc:creator>
      <dc:date>2008-10-06T16:03:20Z</dc:date>
    </item>
  </channel>
</rss>

