<?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 You have not told us what you in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151513#M27170</link>
    <description>&lt;P&gt;You have not told us what you put into your static library. If the objects in that library do not contain a "main" program, you can use the a command similar to the following. All items between carets are to be replaced with appropriate names.&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;compiler_driver_name&amp;gt; -shared *.o -L&amp;lt;library_path&amp;gt; -l&amp;lt;MKL_and_other_libraries&amp;gt; -o &amp;lt;mydll.so&amp;gt;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jul 2017 19:56:18 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2017-07-20T19:56:18Z</dc:date>
    <item>
      <title>Shared Library for Intel fftw wrapper</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151512#M27169</link>
      <description>&lt;P&gt;Dear Engineer,&lt;/P&gt;

&lt;P&gt;I am a newbee for complier opensource software. Also I found that intel parallel XE support FFTW wrapper include C and Fortran interface, I successful&amp;nbsp;complier the .a static library&amp;nbsp;on CentOS 7&amp;nbsp;Linux, I want to know, how to &amp;nbsp;complier a shared library .so?&lt;/P&gt;

&lt;P&gt;Thanks a lot and best wishes!&lt;/P&gt;

&lt;P&gt;Weasley&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 14:02:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151512#M27169</guid>
      <dc:creator>ma_x_</dc:creator>
      <dc:date>2017-07-20T14:02:21Z</dc:date>
    </item>
    <item>
      <title>You have not told us what you</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151513#M27170</link>
      <description>&lt;P&gt;You have not told us what you put into your static library. If the objects in that library do not contain a "main" program, you can use the a command similar to the following. All items between carets are to be replaced with appropriate names.&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;compiler_driver_name&amp;gt; -shared *.o -L&amp;lt;library_path&amp;gt; -l&amp;lt;MKL_and_other_libraries&amp;gt; -o &amp;lt;mydll.so&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 19:56:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151513#M27170</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-07-20T19:56:18Z</dc:date>
    </item>
    <item>
      <title>Dear mecej4,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151514#M27171</link>
      <description>&lt;P&gt;Dear&amp;nbsp;mecej4,&lt;/P&gt;

&lt;P&gt;First thanks for your fast reply. I am sorry I am not say it clearly....&lt;/P&gt;

&lt;P&gt;I mean I use this url&amp;nbsp;https://software.intel.com/en-us/mkl-developer-reference-c-building-your-own-wrapper-library, and can successful build my own libfftw3xf_intel.a, but how to build a shared library "&lt;SPAN style="font-size: 13.008px;"&gt;libfftw3xf_intel.so&lt;/SPAN&gt;" ?&lt;/P&gt;

&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 01:59:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151514#M27171</guid>
      <dc:creator>ma_x_</dc:creator>
      <dc:date>2017-07-21T01:59:00Z</dc:date>
    </item>
    <item>
      <title>Hi Ma X.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151515#M27172</link>
      <description>&lt;P&gt;Hi Ma X.&lt;/P&gt;

&lt;P&gt;Do you have any special request about shared fftwf library?&lt;/P&gt;

&lt;P&gt;But&amp;nbsp; as&amp;nbsp;fftw wrapper itself was integrated to mkl shared library,&amp;nbsp; you can use MKL shared library directly for FFTW application. find the required&amp;nbsp;mkl library by &lt;A href="https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If you have to&amp;nbsp;use one shared library ,&amp;nbsp;&amp;nbsp; you may change the makefile as below&lt;/P&gt;

&lt;P&gt;$(INSTALL_LIBNAME) =&amp;nbsp; libfftw3xf_$(compiler).so&lt;/P&gt;

&lt;P&gt;$(INSTALL_DIR)/$(INSTALL_LIBNAME): $(WRAP:%=$(obj_path)/%.o)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ld -o &amp;nbsp;$@ $^&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2017 08:53:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151515#M27172</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2017-07-24T08:53:31Z</dc:date>
    </item>
    <item>
      <title>Many thanks to you Ying, I</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151516#M27173</link>
      <description>&lt;P&gt;Many thanks to you Ying, I will have a try.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 07:30:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Shared-Library-for-Intel-fftw-wrapper/m-p/1151516#M27173</guid>
      <dc:creator>ma_x_</dc:creator>
      <dc:date>2017-07-25T07:30:20Z</dc:date>
    </item>
  </channel>
</rss>

