<?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 ERROR LINK2019 when using 2-D poisson solver in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903486#M11455</link>
    <description>&lt;P&gt;In the Intel visual fortran 10with Miscrosoft visual studio 2005, Ican't compile successfully the code example given by manual of MKL poisson library witherrors: &lt;BR /&gt;&lt;STRONG&gt;Error1 error LNK2019: unresolved external symbol _D_INIT_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error2 error LNK2019: unresolved external symbol _D_COMMIT_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error3 error LNK2019: unresolved external symbol _D_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error4 error LNK2019: unresolved external symbol _FREE_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error5 fatal error LNK1120: 4 unresolved externalsDebug\PoissonSolver.exe&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;The code is :&lt;BR /&gt; &lt;STRONG&gt;include 'mkl_dfti.f90'&lt;BR /&gt; include 'mkl_poisson.f90'&lt;BR /&gt; program Poisson_2D_double_precision&lt;BR /&gt; ! Include modules defined by mkl_poisson.f90 and mkl_dfti.f90 header files&lt;BR /&gt; use mkl_dfti&lt;BR /&gt; use mkl_poisson&lt;BR /&gt; implicit none&lt;BR /&gt; integer nx,ny&lt;BR /&gt; ! Note that the size of the transform nx must be even !!!&lt;BR /&gt; parameter(nx=6, ny=6)&lt;BR /&gt; double precision pi&lt;BR /&gt; parameter(pi=3.14159265358979324D0)&lt;BR /&gt; integer ix, iy, i, stat&lt;BR /&gt; integer ipar(128)&lt;BR /&gt; double precision ax, bx, ay, by, lx, ly, hx, hy, xi, yi, cx, cy&lt;BR /&gt; double precision dpar(5*nx/2+7)&lt;BR /&gt; ! Note that proper packing of data in right-hand side array f is&lt;BR /&gt; ! automatically provided by the following declaration of the arrays&lt;BR /&gt; double precision f(nx+1,ny+1), u(nx+1,ny+1)&lt;BR /&gt; double precision bd_ax(ny+1), bd_bx(ny+1), bd_ay(nx+1), bd_by(nx+1)&lt;BR /&gt; double precision q&lt;BR /&gt; type(DFTI_DESCRIPTOR), pointer :: xhandle&lt;BR /&gt; character(4) BCtype&lt;BR /&gt; ! Printing the header for the example&lt;BR /&gt; print *, ''&lt;BR /&gt; print *, ' Example of use of MKL Poisson Library'&lt;BR /&gt; print *, ' **********************************************'&lt;BR /&gt; !*******************************************************************************&lt;BR /&gt; q=0.0D0&lt;BR /&gt; ! Computing the mesh size hx in x-direction&lt;BR /&gt; lx=bx-ax&lt;BR /&gt; hx=lx/nx&lt;BR /&gt; ! Computing the mesh size hy in y-direction&lt;BR /&gt; ly=by-ay&lt;BR /&gt; hy=ly/ny&lt;BR /&gt; ! Filling in the values of the TRUE solution u(x,y)=sin(2*pi*x)*sin(2*pi*y)+1&lt;BR /&gt; ! in the mesh points into the array u&lt;BR /&gt; ! Filling in the right-hand side f(x,y)=(8*pi*pi+q)*sin(2*pi*x)*sin(2*pi*y)+q&lt;BR /&gt; ! in the mesh points into the array f.&lt;BR /&gt; ! We choose the right-hand side to correspond to the TRUE solution&lt;BR /&gt; ! of Poisson equation.&lt;BR /&gt; ! Here we are using the mesh sizes hx and hy computed before to compute&lt;BR /&gt; ! the coordinates (xi,yi) of the mesh points&lt;BR /&gt; do iy=1,ny+1&lt;BR /&gt; do ix=1,nx+1&lt;BR /&gt; xi=hx*(ix-1)/lx&lt;BR /&gt; yi=hy*(iy-1)/ly&lt;BR /&gt; cx=dsin(2*pi*xi)&lt;BR /&gt; cy=dsin(2*pi*yi)&lt;BR /&gt; u(ix,iy)=1.0D0*cx*cy&lt;BR /&gt; f(ix,iy)=(8.0D0*pi**2)*u(ix,iy)&lt;BR /&gt; u(ix,iy)=u(ix,iy)+1.0D0&lt;BR /&gt; enddo&lt;BR /&gt; enddo&lt;BR /&gt; ! Setting the type of the boundary conditions on each side of the rectangular&lt;BR /&gt; ! domain:&lt;BR /&gt; ! On the boundary laying on the line x=0(=ax) Dirichlet boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line x=1(=bx) Dirichlet boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line y=0(=ay) Neumann boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line y=1(=by) Neumann boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; BCtype = 'DDNN'&lt;BR /&gt; ! Setting the values of the boundary function G(x,y) that is equal to&lt;BR /&gt; ! the TRUE solution&lt;BR /&gt; ! in the mesh points laying on Dirichlet boundaries&lt;BR /&gt; do iy = 1,ny+1&lt;BR /&gt; bd_ax(iy) = 1.0D0&lt;BR /&gt; bd_bx(iy) = 1.0D0&lt;BR /&gt; enddo&lt;BR /&gt; ! Setting the values of the boundary function g(x,y) that is equal&lt;BR /&gt; ! to the normal derivative&lt;BR /&gt; ! of the TRUE solution in the mesh points laying on Neumann boundaries&lt;BR /&gt; do ix = 1,nx+1&lt;BR /&gt; bd_ay(ix) = -2.0*pi*dsin(2*pi*(ix-1)/nx)&lt;BR /&gt; bd_by(ix) = 2.0*pi*dsin(2*pi*(ix-1)/nx)&lt;BR /&gt; enddo&lt;BR /&gt; ! Initializing ipar array to make it free from garbage&lt;BR /&gt; do i=1,128&lt;BR /&gt; ipar(i)=0&lt;BR /&gt; enddo&lt;BR /&gt; ! Initializing simple data structures of Poisson Library for&lt;BR /&gt; ! 2D Poisson Solver&lt;BR /&gt; call D_INIT_HELMHOLTZ_2D(ax, bx, ay, by, nx, ny, BCtype, q, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Initializing complex data structures of Poisson Library for&lt;BR /&gt; ! 2D Poisson Solver&lt;BR /&gt; ! NOTE: Right-hand side f may be altered after the Commit step.&lt;BR /&gt; ! If you want to keep it,&lt;BR /&gt; ! you should save it in another memory location!&lt;BR /&gt; call d_commit_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Computing the approximate solution of 2D Poisson problem&lt;BR /&gt; ! NOTE: Boundary data stored in the arrays bd_ax, bd_bx, bd_ay, bd_by&lt;BR /&gt; ! should not be changed&lt;BR /&gt; ! between the Commit step and the subsequent call to the Solver routine!&lt;BR /&gt; ! Otherwise the results may be wrong.&lt;BR /&gt; call d_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Cleaning the memory used by xhandle&lt;BR /&gt; call free_Helmholtz_2D(xhandle, ipar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Now we can use xhandle to solve another 2D Poisson problem&lt;BR /&gt; ! Printing the results&lt;BR /&gt; write(*,10) nx&lt;BR /&gt; write(*,11) ny&lt;BR /&gt; print *, ''&lt;BR /&gt; ! Watching the error along the line x=hx&lt;BR /&gt; ix=2&lt;BR /&gt; do iy=1,ny+1&lt;BR /&gt; write(*,12) (ix-1)*hx, (iy-1)*hy, f(ix,iy)-u(ix,iy)&lt;BR /&gt; enddo&lt;BR /&gt; print *, ''&lt;BR /&gt; ! Success message to print if everything is OK&lt;BR /&gt; print *, ' Double precision 2D Poisson example has successfully PASSED'&lt;BR /&gt; print *, ' through all steps of computation!'&lt;BR /&gt; ! Jumping over failure message&lt;BR /&gt; go to 1&lt;BR /&gt; ! Failure message to print if something went wrong&lt;BR /&gt;999 print *, 'Double precision 2D Poisson example FAILED to compute the solution...'&lt;BR /&gt;1 continue&lt;BR /&gt;10 format(1x,'The number of mesh intervals in x-direction is nx=',I1)&lt;BR /&gt;11 format(1x,'The number of mesh intervals in y-direction is ny=',I1)&lt;BR /&gt;12 format(1x,'In the mesh point (',F5.3,',',F5.3,') the error between the computed and the true solution is equal to ', E10.3)&lt;BR /&gt; ! End of the example code&lt;BR /&gt; end&lt;BR /&gt;&lt;/STRONG&gt;I have configured the compiler as:&lt;BR /&gt;1. adding tools-&amp;gt;Options-&amp;gt;Intel Fortran-&amp;gt;LibrariesC:\Program Files\Intel\MKL\10.0.012\ia32\lib&lt;BR /&gt; Include:C:\Program Files\Intel\MKL\10.0.012\include&lt;BR /&gt;2.InProject &amp;gt; Properties &amp;gt; Linker &amp;gt; Input-&amp;gt; the Additional Dependencies line, insert:&lt;BR /&gt;mkl_intel_c.lib mkl_intel_thread.lib mkl_solver.lib mkl_core.lib libguide.lib&lt;BR /&gt;3. The MKl lib directory is also addedas the project additional library directories.&lt;BR /&gt;&lt;BR /&gt;Note: I have successfully using many other MKL libraries, such asmkl_dfti and mkl_trig_transforms, butmkl_poisson didn't work.How do I resolve this problem?&lt;/P&gt;</description>
    <pubDate>Sat, 24 Oct 2009 03:54:06 GMT</pubDate>
    <dc:creator>zlh007</dc:creator>
    <dc:date>2009-10-24T03:54:06Z</dc:date>
    <item>
      <title>ERROR LINK2019 when using 2-D poisson solver</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903486#M11455</link>
      <description>&lt;P&gt;In the Intel visual fortran 10with Miscrosoft visual studio 2005, Ican't compile successfully the code example given by manual of MKL poisson library witherrors: &lt;BR /&gt;&lt;STRONG&gt;Error1 error LNK2019: unresolved external symbol _D_INIT_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error2 error LNK2019: unresolved external symbol _D_COMMIT_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error3 error LNK2019: unresolved external symbol _D_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error4 error LNK2019: unresolved external symbol _FREE_HELMHOLTZ_2D referenced in function _MAIN__PoissonSolver.obj&lt;BR /&gt;Error5 fatal error LNK1120: 4 unresolved externalsDebug\PoissonSolver.exe&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;The code is :&lt;BR /&gt; &lt;STRONG&gt;include 'mkl_dfti.f90'&lt;BR /&gt; include 'mkl_poisson.f90'&lt;BR /&gt; program Poisson_2D_double_precision&lt;BR /&gt; ! Include modules defined by mkl_poisson.f90 and mkl_dfti.f90 header files&lt;BR /&gt; use mkl_dfti&lt;BR /&gt; use mkl_poisson&lt;BR /&gt; implicit none&lt;BR /&gt; integer nx,ny&lt;BR /&gt; ! Note that the size of the transform nx must be even !!!&lt;BR /&gt; parameter(nx=6, ny=6)&lt;BR /&gt; double precision pi&lt;BR /&gt; parameter(pi=3.14159265358979324D0)&lt;BR /&gt; integer ix, iy, i, stat&lt;BR /&gt; integer ipar(128)&lt;BR /&gt; double precision ax, bx, ay, by, lx, ly, hx, hy, xi, yi, cx, cy&lt;BR /&gt; double precision dpar(5*nx/2+7)&lt;BR /&gt; ! Note that proper packing of data in right-hand side array f is&lt;BR /&gt; ! automatically provided by the following declaration of the arrays&lt;BR /&gt; double precision f(nx+1,ny+1), u(nx+1,ny+1)&lt;BR /&gt; double precision bd_ax(ny+1), bd_bx(ny+1), bd_ay(nx+1), bd_by(nx+1)&lt;BR /&gt; double precision q&lt;BR /&gt; type(DFTI_DESCRIPTOR), pointer :: xhandle&lt;BR /&gt; character(4) BCtype&lt;BR /&gt; ! Printing the header for the example&lt;BR /&gt; print *, ''&lt;BR /&gt; print *, ' Example of use of MKL Poisson Library'&lt;BR /&gt; print *, ' **********************************************'&lt;BR /&gt; !*******************************************************************************&lt;BR /&gt; q=0.0D0&lt;BR /&gt; ! Computing the mesh size hx in x-direction&lt;BR /&gt; lx=bx-ax&lt;BR /&gt; hx=lx/nx&lt;BR /&gt; ! Computing the mesh size hy in y-direction&lt;BR /&gt; ly=by-ay&lt;BR /&gt; hy=ly/ny&lt;BR /&gt; ! Filling in the values of the TRUE solution u(x,y)=sin(2*pi*x)*sin(2*pi*y)+1&lt;BR /&gt; ! in the mesh points into the array u&lt;BR /&gt; ! Filling in the right-hand side f(x,y)=(8*pi*pi+q)*sin(2*pi*x)*sin(2*pi*y)+q&lt;BR /&gt; ! in the mesh points into the array f.&lt;BR /&gt; ! We choose the right-hand side to correspond to the TRUE solution&lt;BR /&gt; ! of Poisson equation.&lt;BR /&gt; ! Here we are using the mesh sizes hx and hy computed before to compute&lt;BR /&gt; ! the coordinates (xi,yi) of the mesh points&lt;BR /&gt; do iy=1,ny+1&lt;BR /&gt; do ix=1,nx+1&lt;BR /&gt; xi=hx*(ix-1)/lx&lt;BR /&gt; yi=hy*(iy-1)/ly&lt;BR /&gt; cx=dsin(2*pi*xi)&lt;BR /&gt; cy=dsin(2*pi*yi)&lt;BR /&gt; u(ix,iy)=1.0D0*cx*cy&lt;BR /&gt; f(ix,iy)=(8.0D0*pi**2)*u(ix,iy)&lt;BR /&gt; u(ix,iy)=u(ix,iy)+1.0D0&lt;BR /&gt; enddo&lt;BR /&gt; enddo&lt;BR /&gt; ! Setting the type of the boundary conditions on each side of the rectangular&lt;BR /&gt; ! domain:&lt;BR /&gt; ! On the boundary laying on the line x=0(=ax) Dirichlet boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line x=1(=bx) Dirichlet boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line y=0(=ay) Neumann boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; ! On the boundary laying on the line y=1(=by) Neumann boundary condition&lt;BR /&gt; ! will be used&lt;BR /&gt; BCtype = 'DDNN'&lt;BR /&gt; ! Setting the values of the boundary function G(x,y) that is equal to&lt;BR /&gt; ! the TRUE solution&lt;BR /&gt; ! in the mesh points laying on Dirichlet boundaries&lt;BR /&gt; do iy = 1,ny+1&lt;BR /&gt; bd_ax(iy) = 1.0D0&lt;BR /&gt; bd_bx(iy) = 1.0D0&lt;BR /&gt; enddo&lt;BR /&gt; ! Setting the values of the boundary function g(x,y) that is equal&lt;BR /&gt; ! to the normal derivative&lt;BR /&gt; ! of the TRUE solution in the mesh points laying on Neumann boundaries&lt;BR /&gt; do ix = 1,nx+1&lt;BR /&gt; bd_ay(ix) = -2.0*pi*dsin(2*pi*(ix-1)/nx)&lt;BR /&gt; bd_by(ix) = 2.0*pi*dsin(2*pi*(ix-1)/nx)&lt;BR /&gt; enddo&lt;BR /&gt; ! Initializing ipar array to make it free from garbage&lt;BR /&gt; do i=1,128&lt;BR /&gt; ipar(i)=0&lt;BR /&gt; enddo&lt;BR /&gt; ! Initializing simple data structures of Poisson Library for&lt;BR /&gt; ! 2D Poisson Solver&lt;BR /&gt; call D_INIT_HELMHOLTZ_2D(ax, bx, ay, by, nx, ny, BCtype, q, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Initializing complex data structures of Poisson Library for&lt;BR /&gt; ! 2D Poisson Solver&lt;BR /&gt; ! NOTE: Right-hand side f may be altered after the Commit step.&lt;BR /&gt; ! If you want to keep it,&lt;BR /&gt; ! you should save it in another memory location!&lt;BR /&gt; call d_commit_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Computing the approximate solution of 2D Poisson problem&lt;BR /&gt; ! NOTE: Boundary data stored in the arrays bd_ax, bd_bx, bd_ay, bd_by&lt;BR /&gt; ! should not be changed&lt;BR /&gt; ! between the Commit step and the subsequent call to the Solver routine!&lt;BR /&gt; ! Otherwise the results may be wrong.&lt;BR /&gt; call d_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, dpar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Cleaning the memory used by xhandle&lt;BR /&gt; call free_Helmholtz_2D(xhandle, ipar, stat)&lt;BR /&gt; if (stat.ne.0) goto 999&lt;BR /&gt; ! Now we can use xhandle to solve another 2D Poisson problem&lt;BR /&gt; ! Printing the results&lt;BR /&gt; write(*,10) nx&lt;BR /&gt; write(*,11) ny&lt;BR /&gt; print *, ''&lt;BR /&gt; ! Watching the error along the line x=hx&lt;BR /&gt; ix=2&lt;BR /&gt; do iy=1,ny+1&lt;BR /&gt; write(*,12) (ix-1)*hx, (iy-1)*hy, f(ix,iy)-u(ix,iy)&lt;BR /&gt; enddo&lt;BR /&gt; print *, ''&lt;BR /&gt; ! Success message to print if everything is OK&lt;BR /&gt; print *, ' Double precision 2D Poisson example has successfully PASSED'&lt;BR /&gt; print *, ' through all steps of computation!'&lt;BR /&gt; ! Jumping over failure message&lt;BR /&gt; go to 1&lt;BR /&gt; ! Failure message to print if something went wrong&lt;BR /&gt;999 print *, 'Double precision 2D Poisson example FAILED to compute the solution...'&lt;BR /&gt;1 continue&lt;BR /&gt;10 format(1x,'The number of mesh intervals in x-direction is nx=',I1)&lt;BR /&gt;11 format(1x,'The number of mesh intervals in y-direction is ny=',I1)&lt;BR /&gt;12 format(1x,'In the mesh point (',F5.3,',',F5.3,') the error between the computed and the true solution is equal to ', E10.3)&lt;BR /&gt; ! End of the example code&lt;BR /&gt; end&lt;BR /&gt;&lt;/STRONG&gt;I have configured the compiler as:&lt;BR /&gt;1. adding tools-&amp;gt;Options-&amp;gt;Intel Fortran-&amp;gt;LibrariesC:\Program Files\Intel\MKL\10.0.012\ia32\lib&lt;BR /&gt; Include:C:\Program Files\Intel\MKL\10.0.012\include&lt;BR /&gt;2.InProject &amp;gt; Properties &amp;gt; Linker &amp;gt; Input-&amp;gt; the Additional Dependencies line, insert:&lt;BR /&gt;mkl_intel_c.lib mkl_intel_thread.lib mkl_solver.lib mkl_core.lib libguide.lib&lt;BR /&gt;3. The MKl lib directory is also addedas the project additional library directories.&lt;BR /&gt;&lt;BR /&gt;Note: I have successfully using many other MKL libraries, such asmkl_dfti and mkl_trig_transforms, butmkl_poisson didn't work.How do I resolve this problem?&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2009 03:54:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903486#M11455</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-10-24T03:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR LINK2019 when using 2-D poisson solver</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903487#M11456</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Hello zlh007,&lt;BR /&gt;&lt;BR /&gt;The newest versions of Intel Visual Fortran Compiler 11.1.048 and MKL 10.2 Update 2 is availible now. Please try to use them. You can download it from the &lt;A title="Intel Registration Center" href="https://registrationcenter.intel.com/" target="_blank"&gt;Registration Center&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Also may be this &lt;A title="Link Line Advisor" href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/" target="_blank"&gt;article&lt;/A&gt; will be useful for you.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Art&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Oct 2009 09:46:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903487#M11456</guid>
      <dc:creator>Artem_V_Intel</dc:creator>
      <dc:date>2009-10-24T09:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR LINK2019 when using 2-D poisson solver</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903488#M11457</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/438571"&gt;Artem Vorobiev (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;Hello zlh007,&lt;BR /&gt;&lt;BR /&gt;The newest versions of Intel Visual Fortran Compiler 11.1.048 and MKL 10.2 Update 2 is availible now. Please try to use them. You can download it from the &lt;A title="Intel Registration Center" href="https://registrationcenter.intel.com/" target="_blank"&gt;Registration Center&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Also may be this &lt;A title="Link Line Advisor" href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/" target="_blank"&gt;article&lt;/A&gt; will be useful for you.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Art&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Thanks for your reply! MyIVF compliler is 10.1.011 and MKL is 10.0.011.Can't the poissonlibrary work OK in this environment? Is there any other method to resolve my problem besides installing the newcompliler and MKL?</description>
      <pubDate>Sat, 24 Oct 2009 13:34:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903488#M11457</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-10-24T13:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR LINK2019 when using 2-D poisson solver</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903489#M11458</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/448903"&gt;zlh007&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;Thanks for your reply! MyIVF compliler is 10.1.011 and MKL is 10.0.011.Can't the poissonlibrary work OK in this environment? Is there any other method to resolve my problem besides installing the newcompliler and MKL?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I have update my IVF and MKL to new version, the 2-D helmholtz solver (using the example code given by MKL) can be compiled OK! Thanks!</description>
      <pubDate>Sun, 25 Oct 2009 15:30:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ERROR-LINK2019-when-using-2-D-poisson-solver/m-p/903489#M11458</guid>
      <dc:creator>zlh007</dc:creator>
      <dc:date>2009-10-25T15:30:19Z</dc:date>
    </item>
  </channel>
</rss>

