<?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 Thanks for report. At the in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169454#M28451</link>
    <description>&lt;P style="margin-left:0in; margin-right:0in"&gt;Thanks for report. At the first glance everything looks correct.&amp;nbsp; I have no pgcc install on my side. Could you check the problem with Microsoft compiler?&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Dec 2018 01:42:51 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2018-12-04T01:42:51Z</dc:date>
    <item>
      <title>example files fail when compiled on windows</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169453#M28450</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I've recently compiled mkl example files like pardiso_unsym_c.c and others on windows using pgi compilers. Specifically, I use the lines&lt;/P&gt;
&lt;PRE class="brush:; class-name:dark;"&gt;set "MKL_ROOT=C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2019.1.144\windows\mkl"

set "MKL_LIBS=%MKL_ROOT%\lib\intel64_win"

pgcc -DMKL_ILP64 -I"%MKL_ROOT%\include" -c pardiso_unsym_c.c

pgcc pardiso_unsym_c.obj -L"%MKL_LIBS%" mkl_intel_ilp64.lib mkl_sequential.lib mkl_core.lib&lt;/PRE&gt;

&lt;P&gt;&lt;BR /&gt;It compiles without error. However, when I attempt to run the resultant .exe file, I get the error message&lt;BR /&gt;&lt;BR /&gt;Error during symbolic factorisation: -1&lt;BR /&gt;&lt;BR /&gt;The pardiso error codes &lt;A href="https://software.intel.com/en-us/articles/description-of-pardiso-errors-and-messages/"&gt;(listed here)&lt;/A&gt; say this means there is "input inconsistency". As the error implies, this happens during the symbolic phase (line 121 in pardiso_unsym_c.c).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2018 14:55:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169453#M28450</guid>
      <dc:creator>greiner08</dc:creator>
      <dc:date>2018-12-03T14:55:45Z</dc:date>
    </item>
    <item>
      <title>Thanks for report. At the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169454#M28451</link>
      <description>&lt;P style="margin-left:0in; margin-right:0in"&gt;Thanks for report. At the first glance everything looks correct.&amp;nbsp; I have no pgcc install on my side. Could you check the problem with Microsoft compiler?&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 01:42:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169454#M28451</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-12-04T01:42:51Z</dc:date>
    </item>
    <item>
      <title>Quote:Gennady F. (Intel)</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169455#M28452</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Gennady F. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for report. At the first glance everything looks correct.&amp;nbsp; I have no pgcc install on my side. Could you check the problem with Microsoft compiler?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;No problem. I will try with the Microsoft compiler and see if the issue persists. FWIW When I switched from ILP64 to LP64, the examples compiled and ran successfully with pg compilers.&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 20:25:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169455#M28452</guid>
      <dc:creator>greiner08</dc:creator>
      <dc:date>2018-12-04T20:25:00Z</dc:date>
    </item>
    <item>
      <title>using the same example, MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169456#M28453</link>
      <description>&lt;P&gt;using the same example, MKL 2019 u1, microsoft compiler, ILP64 mode, I see no problem on my side,&lt;/P&gt;&lt;P&gt;Below are more details about compiling, linking and execution outputs:&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;cl /DMKL_ILP64&amp;nbsp; /I"MKL_ROOT\include" /Fe2019_cl.exe pardiso_unsym_c.c&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;MKL_ROOT\mkl_intel_ilp64.lib &amp;nbsp;MKL_ROOT\mkl_sequential.lib MKL_ROOT\mkl_core.lib&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24215.1 for x64&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Copyright (C) Microsoft Corporation.&amp;nbsp; All rights reserved.&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Microsoft (R) Incremental Linker Version 14.00.24215.1&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Copyright (C) Microsoft Corporation.&amp;nbsp; All rights reserved.&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;/out:2019_cl.exe&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Running:&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;2019_cl.exe&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;makefile&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;pardiso_unsym_c.c&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;pardiso_unsym_c.obj&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;C:\4_work\_Forums\u800726&amp;gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;C:\4_work\_Forums\u800726&amp;gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;C:\4_work\_Forums\u800726&amp;gt;2019_cl.exe&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Reordering completed ...&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Number of nonzeros in factors = 21&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Number of factorization MFLOPS = 0&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Factorization completed ...&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Solving system with iparm[11] = 0 ...&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;The solution of the system is:&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [0] = -0.522321&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [1] = -0.008929&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [2] =&amp;nbsp; 1.220982&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [3] = -0.504464&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [4] = -0.214286&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Relative residual = 2.275280e-16&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Solving system with iparm[11] = 1 ...&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;The solution of the system is:&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [0] = -0.220238&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [1] = -0.029762&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [2] =&amp;nbsp; 0.395089&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [3] = -0.290179&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [4] =&amp;nbsp; 0.116071&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Relative residual = 7.021667e-17&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Solving system with iparm[11] = 2 ...&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;The solution of the system is:&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [0] = -0.220238&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [1] = -0.029762&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [2] =&amp;nbsp; 0.395089&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [3] = -0.290179&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;x [4] =&amp;nbsp; 0.116071&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;Relative residual = 1.216188e-16&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;C:\4_work\_Forums\u800726&amp;gt;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin-left:0in; margin-right:0in"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 04:23:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/example-files-fail-when-compiled-on-windows/m-p/1169456#M28453</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-12-05T04:23:00Z</dc:date>
    </item>
  </channel>
</rss>

