<?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 troubles linking the MKL sparse solver to my application in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800754#M3020</link>
    <description>&lt;P&gt;Miguel,&lt;/P&gt;

&lt;P&gt;Fyi  please look at the F90 example
of program for solving a symmetric positive definite system.&lt;/P&gt;

&lt;P&gt;You can find this example (dss_sym_f90.f90) in &lt;MKLROOT&gt;\examples\solver\source\
directory.&lt;/MKLROOT&gt;&lt;/P&gt;

&lt;P&gt;You can try to build it by using makefile:&lt;/P&gt;

&lt;P&gt;nmake em64t funtion=dss_sym_f90+&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;</description>
    <pubDate>Sun, 13 Jun 2010 05:31:29 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2010-06-13T05:31:29Z</dc:date>
    <item>
      <title>troubles linking the MKL sparse solver to my application</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800752#M3018</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I'm having troubles linking my code with the MKL sparse solver library and I would like to ask for your help.&lt;BR /&gt;&lt;BR /&gt;I'm building a fortran project using the Intel Visual Fortran compiler 10.0.026 for 64 bit on MS Visual Studio 2005.&lt;BR /&gt;&lt;BR /&gt;INCLUDE C:\\Program Files\\Intel\\MKL\\10.0.5.025\\include&lt;BR /&gt;LIBPATH C:\\Program Files\\Intel\\MKL\\10.0.5.025\\em64t\\lib&lt;BR /&gt;&lt;BR /&gt;I have made sure that &lt;BR /&gt;&lt;BR /&gt;mkl_dss.f90 and &lt;BR /&gt;mkl_blas.f90&lt;BR /&gt;mkl_blas.fi &lt;BR /&gt;&lt;BR /&gt;are in the \\includedirectory&lt;BR /&gt;&lt;BR /&gt;I'm linking the following libraries &lt;BR /&gt;&lt;BR /&gt;mkl_blas95.lib &lt;BR /&gt;mkl_solver_lp64.lib &lt;BR /&gt;mkl_intel_lp64.lib &lt;BR /&gt;mkl_intel_thread.lib &lt;BR /&gt;mkl_core.lib&lt;BR /&gt;&lt;BR /&gt;which I made sure are contained in the C:\\Program Files\\Intel\\MKL\\10.0.5.025\\emt64t\\lib directory&lt;/P&gt;&lt;P&gt;The &lt;/P&gt;&lt;P&gt;mkl_blas95 library&lt;/P&gt;&lt;P&gt;mkl95_blas.mod&lt;/P&gt;&lt;P&gt;mkl95_precision.mod&lt;/P&gt;&lt;P&gt;are contained in the \\em64t\\lib directory and I have no troubles opening the mkl95_blass module&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;atlinking, the compiler sends the following error message&lt;BR /&gt;&lt;BR /&gt; Error: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DSS] &lt;BR /&gt;&lt;BR /&gt;Then I created the module using&lt;BR /&gt;&lt;BR /&gt;ifort -c mkl_dss.f90 &lt;BR /&gt;&lt;BR /&gt;and copied the mkl_dss.mod file into my \\emt64t\\lib directory first and then into my \\x64\\Debug\\ directory with no success on either case. Finally I took the mkl_dss.f90 file and explicitly included in my project and it compiled sucessfully, the application works!!.&lt;BR /&gt;&lt;BR /&gt;Could you help me understand what am I doing wrong?&lt;BR /&gt;Why the compiler is not creating the mkl_dss.mod?&lt;BR /&gt;Why isn't this an issue for the mkl95_blas module?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Miguel&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2010 22:22:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800752#M3018</guid>
      <dc:creator>Miguel_Jimenez</dc:creator>
      <dc:date>2010-06-11T22:22:46Z</dc:date>
    </item>
    <item>
      <title>troubles linking the MKL sparse solver to my application</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800753#M3019</link>
      <description>You wrote "atlinking, the compiler sends the following error message&lt;BR /&gt;&lt;BR /&gt; &lt;I&gt;Error: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DSS]&lt;/I&gt; "&lt;BR /&gt;&lt;BR /&gt;Module files (*.mod) are used by the compiler (when it encounters USE statements in the source code), not by the linker. Before you can compile a source file that contains USE statements, the USEd modules must be available.&lt;BR /&gt;&lt;BR /&gt;Modules are searched for in specific directories. There is a module file search path just as there is a library search path, executable search path, and an INCLUDE file search path. &lt;BR /&gt;&lt;BR /&gt;Read the compiler documentation (or ifort -help output) to help decide where to put the .mod files.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 12 Jun 2010 12:39:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800753#M3019</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-06-12T12:39:29Z</dc:date>
    </item>
    <item>
      <title>troubles linking the MKL sparse solver to my application</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800754#M3020</link>
      <description>&lt;P&gt;Miguel,&lt;/P&gt;

&lt;P&gt;Fyi  please look at the F90 example
of program for solving a symmetric positive definite system.&lt;/P&gt;

&lt;P&gt;You can find this example (dss_sym_f90.f90) in &lt;MKLROOT&gt;\examples\solver\source\
directory.&lt;/MKLROOT&gt;&lt;/P&gt;

&lt;P&gt;You can try to build it by using makefile:&lt;/P&gt;

&lt;P&gt;nmake em64t funtion=dss_sym_f90+&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jun 2010 05:31:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/troubles-linking-the-MKL-sparse-solver-to-my-application/m-p/800754#M3020</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-06-13T05:31:29Z</dc:date>
    </item>
  </channel>
</rss>

