<?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 link problems~VB2008+MKL in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828716#M5356</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Let me check if I understood you correctly. Youmodified example Poisson d_Helmholtz_2D_c.c and try to compile, link, and run it, right? From your output Imay guessthat the example was successfully compiled, linked, and ran for both parallel and sequential versions of Intel MKL. &lt;BR /&gt;&lt;BR /&gt;The message &lt;BR /&gt;"&lt;P&gt;[4912] MKLtest.exe:  1 (0x1)"means:&lt;/P&gt;&lt;P&gt;Routine[4912] MKLtest.exe:local"exit,returning value is 1(0x1).&lt;BR /&gt;"&lt;BR /&gt;means that theprogram was executed and exited with the code 1, right? &lt;BR /&gt;&lt;BR /&gt;As far as I can see, you modifiedthe example in the way that it always returns 1 as you skipped the piece of code before the line "FAILURE: printf(...);". So, theprogram should always return 1 and print a failure message like "Double precision 2D Poisson example FAILED to compute the solution..."on the screen and it does so, right?&lt;BR /&gt;&lt;BR /&gt;The second message &lt;BR /&gt;"&lt;/P&gt;&lt;P&gt;""means&lt;/P&gt;&lt;P&gt;" Do not generate binary file using the debugging information"&lt;BR /&gt;"&lt;BR /&gt;tells that Intel MKL libraries do NOT contain a debug information. However, as you created a "Debug" Visual Studio project, Visual Studio expects that you want to debug the program and informs you that your program has pieces (calls to Intel MKL functions) that do notcontain debug information. If you change the project to "Release", this message should not appear anymore. However, this message does not prevent your program from running correctly, it just says that you are unable to debug the pieces of code related to Intel MKL. Actually, you do not need to debug Intel MKL functions as they should work correctly. &lt;BR /&gt;&lt;BR /&gt;In summary, if you want the program to exit with 0 exit code, please put the piece of code ended with "return 0;" operatorbefore the line "FAILURE: printf(...);" as in example. If you do not want to see the message about debugging information, switch to "Release" Visual Studio project. Please let me know if this information helps and thank you for using Intel MKL!&lt;BR /&gt;&lt;BR /&gt;With kind regards,&lt;BR /&gt;Sergey G&lt;/P&gt;</description>
    <pubDate>Fri, 06 May 2011 16:14:12 GMT</pubDate>
    <dc:creator>Sergey_G_Intel</dc:creator>
    <dc:date>2011-05-06T16:14:12Z</dc:date>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828713#M5353</link>
      <description>Hi~I have link problem ~please help me~&lt;BR /&gt;I tried the example:&lt;BR /&gt;&lt;P&gt;#include &lt;IOSTREAM&gt;&lt;/IOSTREAM&gt;&lt;/P&gt;&lt;P&gt;#include &lt;FSTREAM&gt;&lt;/FSTREAM&gt;&lt;/P&gt;&lt;P&gt;#include &lt;STDIO.H&gt;&lt;/STDIO.H&gt;&lt;/P&gt;&lt;P&gt;#include &lt;STDLIB.H&gt;&lt;/STDLIB.H&gt;&lt;/P&gt;&lt;P&gt;#include &lt;MATH.H&gt;&lt;/MATH.H&gt;&lt;/P&gt;&lt;P&gt;#include "C:\\Program Files\\Intel\\ComposerXE-2011\\mkl\\include\\mkl_poisson.h"&lt;/P&gt;&lt;P&gt;int main()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;MKL_INT nx=6, ny=6;&lt;/P&gt;&lt;P&gt;MKL_INT ix, iy, i, stat;&lt;/P&gt;&lt;P&gt;MKL_INT ipar[128];&lt;/P&gt;&lt;P&gt;double ax, bx, ay, by, lx, ly, hx, hy;&lt;/P&gt;&lt;P&gt;double *dpar, *f, *bd_ax, *bd_bx, *bd_ay, *bd_by;&lt;/P&gt;&lt;P&gt;double q;&lt;/P&gt;&lt;P&gt;DFTI_DESCRIPTOR_HANDLE xhandle = 0;&lt;/P&gt;&lt;P&gt;char *BCtype;&lt;/P&gt;&lt;P&gt;dpar=(double*)malloc((13*nx/2+7)*sizeof(double));&lt;/P&gt;&lt;P&gt;f=(double*)malloc((nx+1)*(ny+1)*sizeof(double));&lt;/P&gt;&lt;P&gt;bd_ax=(double*)malloc((ny+1)*sizeof(double));&lt;/P&gt;&lt;P&gt;bd_bx=(double*)malloc((ny+1)*sizeof(double));&lt;/P&gt;&lt;P&gt;bd_ay=(double*)malloc((nx+1)*sizeof(double));&lt;/P&gt;&lt;P&gt;bd_by=(double*)malloc((nx+1)*sizeof(double));&lt;/P&gt;&lt;P&gt;/* Defining the rectangular domain 0&lt;X&gt;&amp;lt;1, 0&lt;Y&gt;&amp;lt;1 for 2D Poisson Solver */&lt;/Y&gt;&lt;/X&gt;&lt;/P&gt;&lt;P&gt;ax=0.0E0;&lt;/P&gt;&lt;P&gt;bx=3.0E0;&lt;/P&gt;&lt;P&gt;ay=0.0E0;&lt;/P&gt;&lt;P&gt;by=1.5E0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;q=0.0E0;&lt;/P&gt;&lt;P&gt;lx=bx-ax;&lt;/P&gt;&lt;P&gt;hx=lx/nx;&lt;/P&gt;&lt;P&gt;ly=by-ay;&lt;/P&gt;&lt;P&gt;hy=ly/ny;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(iy=0;iy&amp;lt;=ny;iy++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;for(ix=0;ix&amp;lt;=nx;ix++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f[ix+iy*(nx+1)]=0.0E0;&lt;/P&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;&lt;P&gt;BCtype = "NNNN";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(iy=0;iy&amp;lt;=ny;iy++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;bd_ax[iy]=0.0E0;&lt;/P&gt;&lt;P&gt;bd_bx[iy]=0.0E0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;bd_ay[ix]=0.0E0;&lt;/P&gt;&lt;P&gt;bd_by[ix]= 0.0E0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(i=0;i&amp;lt;128;i++)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;ipar&lt;I&gt;=0;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;d_init_Helmholtz_2D(&amp;amp;ax, &amp;amp;bx, &amp;amp;ay, &amp;amp;by, &amp;amp;nx, &amp;amp;ny, BCtype, &amp;amp;q, ipar, dpar, &amp;amp;stat);&lt;/P&gt;&lt;P&gt;if (stat!=0) goto FAILURE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d_commit_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, &amp;amp;xhandle, ipar, dpar, &amp;amp;stat);&lt;/P&gt;&lt;P&gt;if (stat!=0) goto FAILURE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, &amp;amp;xhandle, ipar, dpar, &amp;amp;stat);&lt;/P&gt;&lt;P&gt;if (stat!=0) goto FAILURE;&lt;/P&gt;&lt;P&gt;free_Helmholtz_2D(&amp;amp;xhandle, ipar, &amp;amp;stat);&lt;/P&gt;&lt;P&gt;if (stat!=0) goto FAILURE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FAILURE: printf("\\nDouble precision 2D Poisson example FAILED to compute ");&lt;/P&gt;&lt;P&gt;printf("the solution...\\n");&lt;/P&gt;&lt;P&gt;/* Free MKL memory if any was allocated */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return 1;&lt;/P&gt;&lt;P&gt;/* End of the example code */&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;I use Intel MKL 10.3.x and Microsoft* Visual Studio 2008.And Select Build Components I choose parallel ,it turns out:&lt;BR /&gt;&lt;BR /&gt;MKLtest.exe: E:\\Vc++\\MKLtest\\Debug\\MKLtest.exe&lt;BR /&gt;MKLtest.exe: C:\\WINDOWS\\system32\\ntdll.dll&lt;BR /&gt;MKLtest.exe: C:\\WINDOWS\\system32\\kernel32.dll&lt;BR /&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_intel_thread.dll&lt;BR /&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_core.dll&lt;BR /&gt;MKLtest.exe: C:\\WINDOWS\\system32\\msvcrt.dll&lt;BR /&gt;MKLtest.exe: C:\\WINDOWS\\system32\\libiomp5md.dll&lt;BR /&gt;MKLtest.exe: C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\\msvcr90d.dll&lt;BR /&gt;MKLtest.exe  0x7c812afb : 0xA1A01DB1: 0xa1a01db1&lt;BR /&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_p4m.dll&lt;BR /&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\libimalloc.dll&lt;BR /&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\libimalloc.dll&lt;BR /&gt; 'Win32 ' (0x1624)  1 (0x1)&lt;BR /&gt; 'Win32 ' (0x14e0)  1 (0x1)&lt;BR /&gt; 'Win32 ' (0x954)  1 (0x1)&lt;BR /&gt; 'Win32 ' (0x1204)  1 (0x1)&lt;BR /&gt;MKLtest.exe  0x7c812afb : 0xA1A01DB2: 0xa1a01db2&lt;BR /&gt;[4376] MKLtest.exe:  1 (0x1)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;when I choose sequential...&lt;/P&gt;&lt;P&gt;MKLtest.exe: E:\\Vc++\\MKLtest\\Debug\\MKLtest.exe&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\WINDOWS\\system32\\ntdll.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\WINDOWS\\system32\\kernel32.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_sequential.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\WINDOWS\\system32\\msvcrt.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_core.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\\msvcr90d.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\mkl_p4m.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\libimalloc.dll&lt;/P&gt;&lt;P&gt;MKLtest.exe: C:\\Program Files\\Intel\\ComposerXE-2011\\redist\\ia32\\mkl\\libimalloc.dll&lt;/P&gt;&lt;P&gt;[4912] MKLtest.exe:  1 (0x1)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I don't know what is the problem~&lt;/P&gt;&lt;P&gt;I have checked mylink MKL correctly using this article about Intel MKL 10.3.x and Microsoft* Visual Studio 2008:http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-compiling-and-linking-with-microsoft-visual-cc/ ..&lt;BR /&gt;I can't figure it out..any advise?&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2011 09:07:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828713#M5353</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-06T09:07:26Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828714#M5354</link>
      <description>not clear to me was you able to link the example succesfully or not? what does it for example means[4912] MKLtest.exe:  1 (0x1)</description>
      <pubDate>Fri, 06 May 2011 09:59:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828714#M5354</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-05-06T09:59:49Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828715#M5355</link>
      <description>Hi~&lt;BR /&gt;[4912] MKLtest.exe:  1 (0x1)"means:&lt;BR /&gt;Routine[4912] MKLtest.exe:local"exit,returning value is 1(0x1).&lt;BR /&gt;&lt;P&gt;""means&lt;BR /&gt;" Do not generate binary file using the debugging information"&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2011 11:06:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828715#M5355</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-06T11:06:08Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828716#M5356</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Let me check if I understood you correctly. Youmodified example Poisson d_Helmholtz_2D_c.c and try to compile, link, and run it, right? From your output Imay guessthat the example was successfully compiled, linked, and ran for both parallel and sequential versions of Intel MKL. &lt;BR /&gt;&lt;BR /&gt;The message &lt;BR /&gt;"&lt;P&gt;[4912] MKLtest.exe:  1 (0x1)"means:&lt;/P&gt;&lt;P&gt;Routine[4912] MKLtest.exe:local"exit,returning value is 1(0x1).&lt;BR /&gt;"&lt;BR /&gt;means that theprogram was executed and exited with the code 1, right? &lt;BR /&gt;&lt;BR /&gt;As far as I can see, you modifiedthe example in the way that it always returns 1 as you skipped the piece of code before the line "FAILURE: printf(...);". So, theprogram should always return 1 and print a failure message like "Double precision 2D Poisson example FAILED to compute the solution..."on the screen and it does so, right?&lt;BR /&gt;&lt;BR /&gt;The second message &lt;BR /&gt;"&lt;/P&gt;&lt;P&gt;""means&lt;/P&gt;&lt;P&gt;" Do not generate binary file using the debugging information"&lt;BR /&gt;"&lt;BR /&gt;tells that Intel MKL libraries do NOT contain a debug information. However, as you created a "Debug" Visual Studio project, Visual Studio expects that you want to debug the program and informs you that your program has pieces (calls to Intel MKL functions) that do notcontain debug information. If you change the project to "Release", this message should not appear anymore. However, this message does not prevent your program from running correctly, it just says that you are unable to debug the pieces of code related to Intel MKL. Actually, you do not need to debug Intel MKL functions as they should work correctly. &lt;BR /&gt;&lt;BR /&gt;In summary, if you want the program to exit with 0 exit code, please put the piece of code ended with "return 0;" operatorbefore the line "FAILURE: printf(...);" as in example. If you do not want to see the message about debugging information, switch to "Release" Visual Studio project. Please let me know if this information helps and thank you for using Intel MKL!&lt;BR /&gt;&lt;BR /&gt;With kind regards,&lt;BR /&gt;Sergey G&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2011 16:14:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828716#M5356</guid>
      <dc:creator>Sergey_G_Intel</dc:creator>
      <dc:date>2011-05-06T16:14:12Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828717#M5357</link>
      <description>&lt;P&gt;Hi~You've understood it.I also uderstand what you mean ....But I have tries the example Poisson d_Helmholtz_2D_c.c that isn't modified.And I choose debug sequential...It turns out :&lt;/P&gt;&lt;P&gt;2D.exe: E:\Vc++\2D\Debug\2D.exe&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\ntdll.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\kernel32.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_sequential.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\msvcrt.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_core.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\WinSxS\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\msvcr90d.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_p4m.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\libimalloc.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\libimalloc.dll&lt;/P&gt;&lt;P&gt;[4364] 2D.exe:  0 (0x0)&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;so it've done ~with returning value 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;when I switch to release...the same turns out_&lt;BR /&gt;&lt;P&gt;2D.exe: E:\Vc++\2D\Release\2D.exe&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\ntdll.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\kernel32.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_sequential.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\system32\msvcrt.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_core.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.218_x-ww_e1702eb6\msvcr90.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\mkl_p4m.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\libimalloc.dll&lt;/P&gt;&lt;P&gt;2D.exe: C:\Program Files\Intel\ComposerXE-2011\redist\ia32\mkl\libimalloc.dll&lt;/P&gt;&lt;P&gt;[8112] 2D.exe:  0 (0x0)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;so it've done ~with returning value 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You said "If you change the project to "Release", this message should not appear anymore."But why it appears again?&lt;BR /&gt;It got:&lt;BR /&gt;1&amp;gt;.\2DRE.cpp(194) : error C3861: MKL_FreeBuffers:  means&lt;BR /&gt;1&amp;gt;.\2DRE.cpp(194) : error C3861: MKL_FreeBuffers: not found&lt;BR /&gt;&lt;BR /&gt;What does this meaning?What can I do to make it disappear?&lt;/P&gt;</description>
      <pubDate>Sat, 07 May 2011 01:43:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828717#M5357</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-07T01:43:31Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828718#M5358</link>
      <description>Hi, &lt;BR /&gt;&lt;BR /&gt;try to use "mkl_free_buffers();" instead of "MKL_FreeBuffers();". Does it work for you?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergey G</description>
      <pubDate>Sat, 07 May 2011 02:42:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828718#M5358</guid>
      <dc:creator>Sergey_G_Intel</dc:creator>
      <dc:date>2011-05-07T02:42:19Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828719#M5359</link>
      <description>Hi,&lt;DIV&gt;Could you explain the difference between 2D program with release options (you've written that it return 0 on output) and 2DRE program that can't find MKL_FreeBuffers?&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Sat, 07 May 2011 02:45:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828719#M5359</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2011-05-07T02:45:36Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828720#M5360</link>
      <description>2D program doesn't contain" MKL_FreeBuffers()" , and 2DRE contains" MKL_FreeBuffers()"....&lt;BR /&gt;I wanna know that no matter what I choose ..release or debug ...I got the same result ...and why?&lt;BR /&gt;Thank you~</description>
      <pubDate>Sat, 07 May 2011 11:13:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828720#M5360</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-07T11:13:34Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828721#M5361</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;I tried to use "mkl_free_buffers();" but it didn't work...&lt;BR /&gt;1&amp;gt;e:\vc++\2d\2d\2d.cpp(194) : error C3861: mkl_free_buffers: &lt;/P&gt;&lt;P&gt;1&amp;gt;e:\vc++\2d\2d\2d.cpp(204) : error C3861: mkl_free_buffers: &lt;/P&gt;</description>
      <pubDate>Sat, 07 May 2011 11:34:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828721#M5361</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-07T11:34:56Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828722#M5362</link>
      <description>Thank you for trying "mkl_free_buffers();"! Would you please add the line "#include "C:\Program Files\Intel\ComposerXE-2011\mkl\include\mkl_service.h"? Thank you! Does it work? &lt;BR /&gt;&lt;BR /&gt;It might result in some MKL header files "not found" compilation messages, so you can place a string "C:\Program Files\Intel\ComposerXE-2011\mkl\include" in "Project - Project Properties - Configuration Properties - C/C++ - General - Additional Include Directories" field. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergey G</description>
      <pubDate>Sat, 07 May 2011 16:44:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828722#M5362</guid>
      <dc:creator>Sergey_G_Intel</dc:creator>
      <dc:date>2011-05-07T16:44:24Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828723#M5363</link>
      <description>&lt;P&gt;Thank you so much~It works~&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2011 02:29:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828723#M5363</guid>
      <dc:creator>zwgoodqq_com</dc:creator>
      <dc:date>2011-05-09T02:29:10Z</dc:date>
    </item>
    <item>
      <title>link problems~VB2008+MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828724#M5364</link>
      <description>Glad to here this! Good luck!&lt;BR /&gt;&lt;BR /&gt;Sergey G</description>
      <pubDate>Mon, 09 May 2011 03:19:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/link-problems-VB2008-MKL/m-p/828724#M5364</guid>
      <dc:creator>Sergey_G_Intel</dc:creator>
      <dc:date>2011-05-09T03:19:02Z</dc:date>
    </item>
  </channel>
</rss>

