<?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 mecej4 for testing out in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049247#M21075</link>
    <description>&lt;P&gt;Thanks mecej4 for testing out my code on your system and pleased to hear that there is nothing wrong with my code!&lt;/P&gt;

&lt;P&gt;My system details are:&lt;/P&gt;

&lt;P&gt;Intel(R) Visual Fortran Composer XE 2013 SP1 Update 3 Integration for Microsoft Visual Studio* 2008, 14.0.0092.2008, Copyright (C) 2002-2014 Intel Corporation.&lt;/P&gt;

&lt;P&gt;Include:&lt;/P&gt;

&lt;P&gt;C:\Program Files\Intel\Composer XE 2013 SP1\mkl\include&lt;BR /&gt;
	C:\Program Files\Intel\Composer XE 2013 SP1\compiler\include&lt;/P&gt;

&lt;P&gt;Libraries:&lt;/P&gt;

&lt;P&gt;C:\Program Files\Intel\Composer XE 2013 SP1\mkl\lib\ia32&lt;BR /&gt;
	C:\Program Files\Intel\ComposerXE-2011\compiler\lib\ia32&lt;/P&gt;

&lt;P&gt;I realise the compiler libraries have not been updated but if I do it gives issues that I would like to avoid solving at the moment.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;/P&gt;

&lt;P&gt;ACAR.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jun 2014 14:36:10 GMT</pubDate>
    <dc:creator>acar</dc:creator>
    <dc:date>2014-06-26T14:36:10Z</dc:date>
    <item>
      <title>Compilation Interface issue with dfeast_scsrev</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049242#M21070</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I recently upgrades to XE2013 to get access to the extended eigensolvers in the MKL11 libraries.&lt;/P&gt;

&lt;P&gt;I am trying to use&amp;nbsp;dfeast_scsrev but am getting some compilation errors.&lt;/P&gt;

&lt;P&gt;Here is my code:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; SUBROUTINE TTTT(IVECT,STIFFNESS_MATRIX)&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; USE SPARSE_MATRIX_CLASS&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;! &amp;nbsp; INCLUDE 'mkl_solvers_ee.fi'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::fpm(128)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; REAL(8)::EMIN,EMAX,EPSOUT&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; REAL(8),ALLOCATABLE::E(:),X(:,:),RES(:)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::M0,LOOP,INFO,M&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::IVECT(*)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; TYPE(SPARSE_MATRIX)::STIFFNESS_MATRIX&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; CALL SPARSE_MATRIX_STORAGE('CSR',STIFFNESS_MATRIX)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; call feastinit (fpm)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; EMIN=0D0 ; EMAX=1000D0 ; M0=ivect(12)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; ALLOCATE(E(M0),X(IVECT(12),M0),RES(M0))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; call dfeast_scsrev('L',ivect(12),STIFFNESS_MATRIX%MATRIX,STIFFNESS_MATRIX%ROWS(1:ivect(12)+1),STIFFNESS_MATRIX%COLUMNS,fpm, epsout, loop, emin,emax, m0, e, x, m, res, info)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; RETURN&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; END SUBROUTINE&lt;/P&gt;

&lt;P&gt;When I compile this code I get three errors:&lt;/P&gt;

&lt;P&gt;C:\RMA\Programs\EFE_V1.0\ansys\SSSS.f90(24): error #8055: The procedure has a dummy argument that has the ALLOCATABLE, ASYNCHRONOUS, OPTIONAL, POINTER, TARGET, VALUE or VOLATILE attribute. Required explicit interface is missing from original source. &amp;nbsp; [MATRIX]&lt;BR /&gt;
	C:\RMA\Programs\EFE_V1.0\ansys\SSSS.f90(24): error #8055: The procedure has a dummy argument that has the ALLOCATABLE, ASYNCHRONOUS, OPTIONAL, POINTER, TARGET, VALUE or VOLATILE attribute. Required explicit interface is missing from original source. &amp;nbsp; [ROWS]&lt;BR /&gt;
	C:\RMA\Programs\EFE_V1.0\ansys\SSSS.f90(24): error #8055: The procedure has a dummy argument that has the ALLOCATABLE, ASYNCHRONOUS, OPTIONAL, POINTER, TARGET, VALUE or VOLATILE attribute. Required explicit interface is missing from original source. &amp;nbsp; [COLUMNS]&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;If I uncomment the include statement I get the following error:&lt;/P&gt;

&lt;P&gt;SSSS.f90&lt;BR /&gt;
	C:\Program Files\Intel\Composer XE 2013 SP1\mkl\include\mkl_solvers_ee.fi(459): error #8000: &amp;nbsp;There is a conflict between local interface block and external interface block. &amp;nbsp; [SA]&lt;/P&gt;

&lt;P&gt;The type Sparse_Matrix is:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;TYPE SPARSE_MATRIX&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;INTEGER::NUMBER_OF_ROWS=0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;INTEGER::NUMBER_OF_COLUMNS=0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;INTEGER::NUMBER_OF_NON_ZEROS=0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;INTEGER,ALLOCATABLE::ROWS(:)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;INTEGER,ALLOCATABLE::COLUMNS(:)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;REAL(8),ALLOCATABLE::MATRIX(:)&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; END TYPE SPARSE MATRIX&lt;/P&gt;

&lt;P&gt;Any help in solving this issue would be gratefully received.&lt;/P&gt;

&lt;P&gt;Thanks, ACAR&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jun 2014 14:56:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049242#M21070</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-06-25T14:56:42Z</dc:date>
    </item>
    <item>
      <title>Hi, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049243#M21071</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I can not compile your code here, as many of &lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;structure&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt; is missed in the source code. &amp;nbsp; Yes, you need to need to &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;uncomment the include. You can put before the function call. For example:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp; INCLUDE 'mkl_solvers_ee.fi'&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;SPAN style="font-size: 12px; line-height: 1.5;"&gt;&amp;nbsp;SUBROUTINE TTTT(IVECT,STIFFNESS_MATRIX)&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;SPAN style="font-size: 12px; line-height: 1.5;"&gt;&amp;nbsp;USE SPARSE_MATRIX_CLASS&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Chao&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 06:50:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049243#M21071</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2014-06-26T06:50:46Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049244#M21072</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Thanks for looking at my problem. &amp;nbsp;All the structures were actually there but for simplicity here is a self-contained version which exhibits the same problem:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; SUBROUTINE INTEL&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;! &amp;nbsp; INCLUDE 'mkl_solvers_ee.fi'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::fpm(128)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; REAL(8)::EMIN,EMAX,EPSOUT&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; REAL(8),ALLOCATABLE::E(:),X(:,:),RES(:)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::M0,LOOP,INFO,M,N&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; CHARACTER(1)::UPLO='L'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; INTEGER::IVECT(100)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; TYPE SPARSE_MATRIX&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; REAL(8),ALLOCATABLE::MATRIX(:)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; INTEGER,ALLOCATABLE::ROWS(:)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; INTEGER,ALLOCATABLE::COLUMNS(:)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; END TYPE SPARSE_MATRIX&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; TYPE(SPARSE_MATRIX)::STIFFNESS_MATRIX&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; N=IVECT(12)&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; ALLOCATE(STIFFNESS_MATRIX%MATRIX(N))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; ALLOCATE(STIFFNESS_MATRIX%ROWS(N))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; ALLOCATE(STIFFNESS_MATRIX%COLUMNS(N))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; call feastinit (fpm)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; EMIN=0D0 ; EMAX=1000D0 ; M0=N&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; ALLOCATE(E(M0),X(N,M0),RES(M0))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; call dfeast_scsrev(UPLO,N,STIFFNESS_MATRIX%MATRIX,STIFFNESS_MATRIX%ROWS(1:N+1),STIFFNESS_MATRIX%COLUMNS,fpm, epsout, loop, emin,emax, m0, e, x, m, res, info)&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; RETURN&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; END SUBROUTINE&lt;/P&gt;

&lt;P&gt;The routine does not compile either as is or when the include is uncommented and the errors are as reported in my first note.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;ACAR.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:29:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049244#M21072</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-06-26T07:29:47Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049245#M21073</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I realise that I've not initialised any of the arrays but that should not affect the compilation...&lt;/P&gt;

&lt;P&gt;ACAR&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:34:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049245#M21073</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-06-26T07:34:39Z</dc:date>
    </item>
    <item>
      <title>The code that you listed in</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049246#M21074</link>
      <description>&lt;P&gt;The code that you listed in #3 gets compiled by the&amp;nbsp;14.0.3.202 compiler without any error messages being output.&lt;/P&gt;

&lt;P&gt;Please provide more details of your system, compiler version, etc., to enable reproducing the errors that you mentioned.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 13:59:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049246#M21074</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-26T13:59:23Z</dc:date>
    </item>
    <item>
      <title>Thanks mecej4 for testing out</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049247#M21075</link>
      <description>&lt;P&gt;Thanks mecej4 for testing out my code on your system and pleased to hear that there is nothing wrong with my code!&lt;/P&gt;

&lt;P&gt;My system details are:&lt;/P&gt;

&lt;P&gt;Intel(R) Visual Fortran Composer XE 2013 SP1 Update 3 Integration for Microsoft Visual Studio* 2008, 14.0.0092.2008, Copyright (C) 2002-2014 Intel Corporation.&lt;/P&gt;

&lt;P&gt;Include:&lt;/P&gt;

&lt;P&gt;C:\Program Files\Intel\Composer XE 2013 SP1\mkl\include&lt;BR /&gt;
	C:\Program Files\Intel\Composer XE 2013 SP1\compiler\include&lt;/P&gt;

&lt;P&gt;Libraries:&lt;/P&gt;

&lt;P&gt;C:\Program Files\Intel\Composer XE 2013 SP1\mkl\lib\ia32&lt;BR /&gt;
	C:\Program Files\Intel\ComposerXE-2011\compiler\lib\ia32&lt;/P&gt;

&lt;P&gt;I realise the compiler libraries have not been updated but if I do it gives issues that I would like to avoid solving at the moment.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;/P&gt;

&lt;P&gt;ACAR.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 14:36:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049247#M21075</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-06-26T14:36:10Z</dc:date>
    </item>
    <item>
      <title>Please check whether the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049248#M21076</link>
      <description>&lt;P&gt;Please check whether the source file that you are editing is the same as the one that gets compiled, and whether you have more than one source file with the same name in your directory tree. After all, I tried the same compiler version on Windows 8.1, and there were no errors reported.&lt;/P&gt;

&lt;P&gt;You may also check by compiling the file using the IFort command window, after moving to the correct subdirectory.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 16:00:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049248#M21076</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-26T16:00:22Z</dc:date>
    </item>
    <item>
      <title>Thanks for your input mecej4</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049249#M21077</link>
      <description>&lt;P&gt;Thanks for your input mecej4 but I am confident that it is this file that I am compiling and that there are no duplicates - the errors reported relate specifically to the file and it's contents.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2014 17:01:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049249#M21077</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-06-26T17:01:04Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049250#M21078</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;Would it be possible to attach your file here?&amp;nbsp; It may to us to compile the code here.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Chao&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2014 05:26:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049250#M21078</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2014-06-30T05:26:49Z</dc:date>
    </item>
    <item>
      <title>Hi Guys,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049251#M21079</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;

&lt;P&gt;I think the problem might be that I am pointing to my old XE2011 libraries since I was and am still having the following linker error:&lt;/P&gt;

&lt;P&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;3&amp;nbsp;&amp;nbsp; &amp;nbsp; error LNK2019: unresolved external symbol ___intel_VEC_memcpy referenced in function _MENU_F90_mp_GMSETWIDGETINFO&amp;nbsp;&amp;nbsp; &amp;nbsp;GMENUWI8.LIB(menu_f90.obj)&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have posted this in the FORTRAN forum so let's see what happens.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;ACAR.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 23:03:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Compilation-Interface-issue-with-dfeast-scsrev/m-p/1049251#M21079</guid>
      <dc:creator>acar</dc:creator>
      <dc:date>2014-07-01T23:03:22Z</dc:date>
    </item>
  </channel>
</rss>

