<?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: Help on linking with MKL 10.0.011 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893782#M10640</link>
    <description>&lt;P&gt;Tim, I too read the User's Guide and prior to posting I knew that mkl_c.librelated to IVF's calling convention which differsfrom CVF's.&lt;/P&gt;
&lt;P&gt;What I wondered about was why mkl_c.lib is required for the win32 platform but not for em64t when both x86 and x64 use the Intel calling convention. If you have an obvious answer to this then please share it. Ditto for the other queries, which however naive they may turn outto be,have no in-your-face answers that are obvious to you or to me.&lt;/P&gt;
&lt;P&gt;Thanks anyways,&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
    <pubDate>Fri, 16 Nov 2007 19:45:45 GMT</pubDate>
    <dc:creator>g_f_thomas</dc:creator>
    <dc:date>2007-11-16T19:45:45Z</dc:date>
    <item>
      <title>Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893771#M10629</link>
      <description>I'm studying how to program with mkl and I wrote a test program that call vmlSetMode and vdAsin function. Now the problem is that I can compile it via mkl 9.1, but failed to compile it with mkl 10.0.011. I included the header file "mkl_vml.h", and specified these corresponding environment path variables to link with the library.&lt;BR /&gt;&lt;BR /&gt;The following is the compilation process:&lt;BR /&gt;&lt;BR /&gt;icc -o test test.cpp -lvml ( link with mkl 9.1 ok)&lt;BR /&gt;icc -o test test.cpp -lmkl_vml_ia ( failed to link with mkl 10.0.011: 
undefined reference to `vmlSetMode'&lt;BR /&gt;
undefined reference to `vdAsin') &lt;BR /&gt;</description>
      <pubDate>Sat, 10 Nov 2007 03:09:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893771#M10629</guid>
      <dc:creator>zhimin_xiong</dc:creator>
      <dc:date>2007-11-10T03:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893772#M10630</link>
      <description>I don't know the answer to your specific problem. In general, the new "layered" scheme of MKL 10 requires linking multiple libraries. For example, it may be necessary to append -lmkl_core. &lt;BR /&gt;Several of us had to search to find the new library link sequence. For example, you can use 'nm libmkl_core.a | grep vmlSetMode' to see quickly whether that symbol is defined in that library.&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Nov 2007 13:36:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893772#M10630</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-11-12T13:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893773#M10631</link>
      <description>&lt;P&gt;As tim18 said, in MKL 10.0 new layered model was implemented. Now we have three layers: interface (libmkl_intel.a/.so), threading (libmkl_intel_thread.a/.so, libmkl_gnu_thread.a/.so, libmkl_sequential.a/.so) and computation (libmkl_core.a/.so). In brackets I put libraries enough for successful link with VML at linux IA32 (for more information you can look into documentation). When you linking your application, you should use one library from each layer. For example, if you want receive sequential version of VML you should link your application with following libraries: libmkl_intel.a/.so + libmkl_sequential.a/.so + libmkl_core.a/.so. In case of dynamical MKL usage, path to libmkl_vml_XXX.so libraries should be provided to OS dynamic loader (commonly, LD_LIBRARY_PATH system environment variable used for this purpose).&lt;/P&gt;
&lt;P&gt;Let us know if you have any questions.&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2007 16:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893773#M10631</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-11-12T16:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893774#M10632</link>
      <description>&lt;P align="justify"&gt;&lt;FONT face="Courier New"&gt;I'm using IVF 10 and MKL 10 inVS2005 on a C2D Vista.&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV align="justify"&gt;&lt;PRE&gt;The digegasx/90 example compiles, links, and loads in Win32 with the&lt;/PRE&gt;&lt;PRE&gt;linker pulling in mkl_c.lib, libguide.lib, and mkl_ia32.lib, the same&lt;/PRE&gt;&lt;PRE&gt;as with MKL 9.1.&lt;/PRE&gt;&lt;PRE&gt;However, in EM64T, whereas linking to libguide.lib and mkl_em64t.lib&lt;/PRE&gt;&lt;PRE&gt;with MKL 9.1 the sample compiles and links, with MKL 10 is takes all of&lt;/PRE&gt;&lt;PRE&gt;mkl_solver_lp64.lib mkl_intel_lp64.lib mkl_intel_thread.lib mkl_core.lib&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV align="justify"&gt;&lt;PRE&gt;libguide40.lib with MKL 10.&lt;/PRE&gt;&lt;PRE&gt;How does one select the requisite libs in Win32 and EM64T? I've RTFM&lt;/PRE&gt;&lt;PRE&gt;and its still as clear as mud.&lt;/PRE&gt;&lt;PRE&gt;Gerry&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Nov 2007 20:35:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893774#M10632</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-12T20:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893775#M10633</link>
      <description>&lt;P&gt;Gerry,&lt;/P&gt;
&lt;P&gt;which functionality from MKL are you planing to use?&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2007 07:46:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893775#M10633</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-11-13T07:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893776#M10634</link>
      <description>&lt;P&gt;Currently the interval linear solverssincemkl 9.1.027 which, at least for em64t, got broken in moving to 10.0.012. I have it working again with the current mkl build but this was by trial and error rather than by rational decision as the documentation isn't clear on what one has to make available to the rather dim linker. The blas and linpackinterfaces built fine via nmake. More useful to Windows users than the new multilayer redesign of mkl would be its integration into VS 2005, with wizards, add-ins, and online help.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;
&lt;P&gt;ps &lt;/P&gt;
&lt;P&gt;Excuse the rant but I happen to think that mkl is a useful product that can be made even better.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2007 19:39:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893776#M10634</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-13T19:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893777#M10635</link>
      <description>&lt;P&gt;Gerry&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The best way to find proper sequence for linking is to go in exampleinterval in MKL release. Then it is necessary to set envriroment variables like this&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;C:ProjectsMKL10ia32lib&amp;gt;set lib=C:ProjectsMKL10ia32lib;%lib%&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;SPAN&gt;C:ProjectsMKL10ia32lib&amp;gt;set path=C:ProjectsMKL10ia32&amp;#8;in;%path%&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;C:ProjectsMKL10ia32lib&amp;gt;set include=C:ProjectsMKL10ia32include;%include%&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;In the directory exampleinterval you need to type 'nmake help' and you will see the following&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;C:ProjectsMKL10examplesinterval&amp;gt;nmake help&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Microsoft  Program Maintenance Utility Version 7.10.3077&lt;BR /&gt;Copyright (C) Microsoft Corporation. All rights reserved.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Usage: nmake {lib32/dll32/libem64t/dllem64t/lib64/dll64} [function=name+]&lt;BR /&gt;[THREADING=threading_name]&lt;BR /&gt;name - function name, look at the file ias.lst for details&lt;BR /&gt;Intel Fortran Compiler as default&lt;BR /&gt;threading_name - can be parallel or sequential. Default value is parallel.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Let's type 'nmake lib32' and we see a long outputof running. If we look at it carefully, we find a sequence of MKL libs needed for linking like this&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;ifort&lt;SPAN&gt; &lt;/SPAN&gt;/MT /Fo_resultsintel_parallel_32_lib /Fe_resultsintel_parallel&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;_32_lib sourcesitrtrsx.f90 mkl_solver.lib mkl_intel_c.lib mkl_intel_thread.lib&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;mkl_core.lib libguide40.lib&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;It is also possible to run just one example. The list of examples is located in file ias.lst&lt;/P&gt;
&lt;P class="MsoNormal"&gt;It should be noted that &lt;FONT color="#000000"&gt;n&lt;FONT size="2"&gt;ew layered model is not supported for interval solvers in MKL 10 Gold. This means the interval solvers can only work with Intel threading (e.g. any application calling them should be linked with libguide) or without any threading.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;All the best&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Sergey&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2007 13:49:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893777#M10635</guid>
      <dc:creator>Sergey_K_Intel1</dc:creator>
      <dc:date>2007-11-15T13:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893778#M10636</link>
      <description>&lt;P&gt;Sergey, &lt;/P&gt;
&lt;P&gt;Thanks for the response.&lt;/P&gt;
&lt;P&gt;The Additional Dependencies required by the linker are &lt;/P&gt;
&lt;P&gt;mkl_c.lib libguide.lib mkl_solver.lib mkl_intel_thread.lib&lt;/P&gt;
&lt;P&gt;for win32 and &lt;/P&gt;
&lt;P&gt;mkl_solver_lp64.lib mkl_intel_lp64.lib mkl_intel_thread.lib mkl_core.lib libguide40.lib&lt;/P&gt;
&lt;P&gt;for em64t, respectively.&lt;/P&gt;
&lt;P&gt;Why are they different? Why does win32 require c while em64t doesn't? Why does em64t require core but win32 doesn't? What's the difference between libguide and libguide40?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2007 16:19:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893778#M10636</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-16T16:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893779#M10637</link>
      <description>mkl_c.lib simply means a library conforming to ifort conventions, the alternative (to support CVF) being mkl_s. As there is no question of supporting CVF with 64-bit libraries, and no 64-bit support for the ABI in mkl_s, you don't have the same choice there.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 16:52:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893779#M10637</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-11-16T16:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893780#M10638</link>
      <description>&lt;P&gt;I'm patently not using CVF but rather IVF. My questions still stand, unanswered.&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2007 16:59:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893780#M10638</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-16T16:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893781#M10639</link>
      <description>Sorry, Gerry, from now on I'll take the hint that even those questions of yours which appear to have a straightforward answer aren't meant to be answered.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 17:35:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893781#M10639</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-11-16T17:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893782#M10640</link>
      <description>&lt;P&gt;Tim, I too read the User's Guide and prior to posting I knew that mkl_c.librelated to IVF's calling convention which differsfrom CVF's.&lt;/P&gt;
&lt;P&gt;What I wondered about was why mkl_c.lib is required for the win32 platform but not for em64t when both x86 and x64 use the Intel calling convention. If you have an obvious answer to this then please share it. Ditto for the other queries, which however naive they may turn outto be,have no in-your-face answers that are obvious to you or to me.&lt;/P&gt;
&lt;P&gt;Thanks anyways,&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2007 19:45:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893782#M10640</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-16T19:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893783#M10641</link>
      <description>&lt;P&gt;Gerry,&lt;/P&gt;
&lt;P&gt;"c" and "s" letters in libraries names means "cdecl" and "stdcall". Stdcall calling convention is absent at EM64T and IPF.&lt;/P&gt;
&lt;P&gt;Andrey&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2007 08:43:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893783#M10641</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-11-19T08:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893784#M10642</link>
      <description>&lt;P&gt;Gerry,&lt;/P&gt;
&lt;P&gt;Here is a smalladdition to Andrey's replyregarding libguide libraries:&lt;/P&gt;
&lt;P&gt;libguide40.lib is the interface library for dynamyc threading library and libguide.lib is thestatic threading library.&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;
&lt;P&gt;
&lt;TABLE id="table2" cellspacing="0" cellpadding="2"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2007 13:48:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893784#M10642</guid>
      <dc:creator>Sergey_K_Intel1</dc:creator>
      <dc:date>2007-11-19T13:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893785#M10643</link>
      <description>&lt;P&gt;Andrey,&lt;/P&gt;
&lt;P&gt;I missed (mea culpa) the fact that stdcall isn't applicable to em64t. Also, from the MKL FAQ (using MKL with IMSL) I learned that libguide and libguide40 are for static and dynamic linking, respectively, a fact that isn't explicitly stated in the ug.pdf.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;
&lt;P&gt;ps&lt;/P&gt;
&lt;P&gt;Isn't item 5 in the using mkl and imsl entry of the FAQ redundant?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2007 13:50:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893785#M10643</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-19T13:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help on linking with MKL 10.0.011</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893786#M10644</link>
      <description>&lt;P&gt;Sergey,&lt;/P&gt;
&lt;P&gt;I just happened on this while snooping in the MKL FAQ.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2007 13:57:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Help-on-linking-with-MKL-10-0-011/m-p/893786#M10644</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2007-11-19T13:57:17Z</dc:date>
    </item>
  </channel>
</rss>

