<?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: undefined symbol: mkl_blas_dsyrk while using mkl with an abaqus subroutine in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1610932#M36232</link>
    <description>&lt;P&gt;Actually it was an installation problem because I was supposed to use the flag &lt;EM&gt;"-mkl"&lt;/EM&gt; in both the &lt;EM&gt;compile_fortran&lt;/EM&gt; and &lt;EM&gt;link_sl&lt;/EM&gt; variables and that's it, problem fixed&lt;/P&gt;</description>
    <pubDate>Sun, 30 Jun 2024 08:56:04 GMT</pubDate>
    <dc:creator>LouisScheidt</dc:creator>
    <dc:date>2024-06-30T08:56:04Z</dc:date>
    <item>
      <title>undefined symbol: mkl_blas_dsyrk while using mkl with an abaqus subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1609318#M36220</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an Abaqus's user subroutine written in Fortran which use some LAPACK and BLAS functions.&lt;/P&gt;&lt;P&gt;To run my computations I have an abaqus environment file where I specify the compiler options among other things and I'm trying to call the lapack and blas libraries provided with mkl.&lt;/P&gt;&lt;P&gt;the problem is that when I try to run my simulation I obtain this error:&amp;nbsp;/usr/local/abaqus/SIMULIA/EstProducts/2022/linux_a64/code/bin/package_dp: symbol lookup error: /usr/local/abaqus/SIMULIA/EstProducts/2022/linux_a64/code/bin/libmkl_intel_lp64.so: undefined symbol: mkl_blas_dsyrk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm definitely not an expert on the subject and at the moment my technical support&amp;nbsp; can't help me so if anyone could I would appreciate thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's the relevant part of my abaqus environment file:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;fortCmd = "ifort" # &amp;lt;-- Fortran compiler&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;compile_fortran = (fortCmd + " -c -fPIC -I%I -lmkl_intel_lp64 -lmkl_lapack95_lp64 -lmkl_blas95_lp64")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;link_sl = [fortCmd, &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;'-fPIC', '-shared','-Wl,--add-needed', &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;'%E', '-Wl,-soname,%U', '-o', '%U', '%F', '%A', '%L', '%B', &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;'-Wl,-Bdynamic', '-lmkl_intel_lp64', '-lmkl_lapack95_lp64', '-lmkl_blas95_lp64']&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using ifort 18.2 and intel mpi 18.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 13:02:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1609318#M36220</guid>
      <dc:creator>LouisScheidt</dc:creator>
      <dc:date>2024-06-24T13:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: undefined symbol: mkl_blas_dsyrk while using mkl with an abaqus subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1609519#M36223</link>
      <description>&lt;P&gt;Louis,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;could you check &lt;A href="https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-link-line-advisor.html" target="_self"&gt;MKL Linker Adviser&lt;/A&gt; to see how link against oneMKL.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 06:21:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1609519#M36223</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2024-06-25T06:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: undefined symbol: mkl_blas_dsyrk while using mkl with an abaqus subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1610929#M36231</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the reply.&lt;/P&gt;&lt;P&gt;I did try the MKL Linker Adviser but it didn't help.&lt;/P&gt;&lt;P&gt;Actually it was an installation issue, I was able to contact the technical support about it and it's fixed thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2024 08:54:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1610929#M36231</guid>
      <dc:creator>LouisScheidt</dc:creator>
      <dc:date>2024-06-30T08:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: undefined symbol: mkl_blas_dsyrk while using mkl with an abaqus subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1610932#M36232</link>
      <description>&lt;P&gt;Actually it was an installation problem because I was supposed to use the flag &lt;EM&gt;"-mkl"&lt;/EM&gt; in both the &lt;EM&gt;compile_fortran&lt;/EM&gt; and &lt;EM&gt;link_sl&lt;/EM&gt; variables and that's it, problem fixed&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2024 08:56:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/undefined-symbol-mkl-blas-dsyrk-while-using-mkl-with-an-abaqus/m-p/1610932#M36232</guid>
      <dc:creator>LouisScheidt</dc:creator>
      <dc:date>2024-06-30T08:56:04Z</dc:date>
    </item>
  </channel>
</rss>

