<?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 a lot, I now in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133500#M25825</link>
    <description>&lt;P&gt;Thanks a lot, I now understand what exactly is going wrong.&lt;/P&gt;

&lt;P&gt;When adding the flag -fdefault-real-8 , the MKL subroutine no longer gives me the right output. This actually means that whenever I declare 8 byte reals and provide them as inputs, I don't get the correct output.&lt;/P&gt;

&lt;P&gt;Do you know why this is? Shouldn't MKL work with different precisions?&lt;/P&gt;

&lt;P&gt;Thanks for your patience!&lt;/P&gt;</description>
    <pubDate>Mon, 05 Feb 2018 20:26:06 GMT</pubDate>
    <dc:creator>raposo__henrique</dc:creator>
    <dc:date>2018-02-05T20:26:06Z</dc:date>
    <item>
      <title>Problem compiling Fortran code with MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133494#M25819</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I'm trying to replace my own LU decomposition code with the fortran subroutine&amp;nbsp;gbtrf&amp;nbsp;from MKL. Please bear with me as I am somewhat new to Fortran.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;I successfully compiled, run and validated the example (sgbtrfx.f) provided by Intel (2018 release). The compilation was done with:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;gfortran &amp;nbsp;-w source/sgbtrfx.f &amp;nbsp;-Wl,--start-group /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_intel_lp64.a /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_intel_thread.a /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_core.a -Wl,--end-group lib/libaux_intel64_gfortran.a -L/opt/intel/compilers_and_libraries_2018/linux/mkl/../compiler/lib/intel64 -liomp5 &amp;nbsp;-lpthread -ldl -o _results/intel_lp64_omp_intel_iomp5_intel64_lib/sgbtrfx.out&lt;/P&gt;

&lt;P&gt;And it also required me to set:&lt;/P&gt;

&lt;P&gt;export LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2018.1.163/linux/compiler/lib/intel64_lin&lt;/P&gt;

&lt;P&gt;I am now finding some difficulties getting the same subroutine to work with some code I previously had. My compilation and linking were done with:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 1. Compilation&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;gfortran &amp;nbsp;-O1 &amp;nbsp;-fopenmp&amp;nbsp;&lt;/SPAN&gt;-ffast-math -funroll-loops --param max-unroll-times=2 -Ofast -march=native -mcmodel=medium -fno-range-check -ffree-line-length-0 -fdefault-double-8 -fdefault-real-8 -fdefault-integer-8 -w -c &amp;lt;FILENAME&amp;gt;.f90&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 2. Linking&lt;/P&gt;

&lt;P&gt;gfortran &amp;nbsp;-O1 &amp;nbsp;-fopenmp&amp;nbsp;-ffast-math -funroll-loops --param max-unroll-times=2 -Ofast -march=native -mcmodel=medium -fno-range-check -ffree-line-length-0 -fdefault-double-8 -fdefault-real-8 -fdefault-integer-8 -o ......&lt;/P&gt;

&lt;P&gt;And I got it to link to the MKL library using:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 1. Compilation&lt;/P&gt;

&lt;P&gt;gfortran&amp;nbsp;-O1 -fopenmp&amp;nbsp;-m64 -I/opt/intel/parallel_studio_xe_2018/compilers_and_libraries_2018/linux/mkl/include -ffast-math -funroll-loops --param max-unroll-times=2 -Ofast -march=native -mcmodel=medium -fno-range-check -ffree-line-length-0 -fdefault-double-8 -fdefault-real-8 -fdefault-integer-8 -w -c &amp;lt;FILENAME&amp;gt;.f90&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 2. Linking&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;gfortran &amp;nbsp;-O1 &amp;nbsp;-fopenmp&amp;nbsp;&lt;/SPAN&gt;-L/opt/intel/parallel_studio_xe_2018/compilers_and_libraries_2018/linux/mkl/lib/intel64 -Wl,--no-as-needed -lmkl_gf_ilp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl -ffast-math -funroll-loops --param max-unroll-times=2 -Ofast -march=native -mcmodel=medium -fno-range-check -ffree-line-length-0 -fdefault-double-8 -fdefault-real-8 -fdefault-integer-8 -o ......&lt;/P&gt;

&lt;P&gt;as well as&lt;/P&gt;

&lt;P&gt;export LD_LIBRARY_PATH=/opt/intel/parallel_studio_xe_2018/compilers_and_libraries_2018/linux/mkl/lib/intel64&lt;/P&gt;

&lt;P&gt;But when I call the subroutine&amp;nbsp;&lt;SPAN style="font-size: 13.008px;"&gt;sgbtrf&amp;nbsp;with the exact same input as in the example file (sgbtrfx.f) I don't obtain the correct output.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;Can anyone help me figure out what might be wrong here?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Many thanks,&lt;/P&gt;

&lt;P&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 14:30:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133494#M25819</guid>
      <dc:creator>raposo__henrique</dc:creator>
      <dc:date>2018-02-04T14:30:43Z</dc:date>
    </item>
    <item>
      <title>Almost all Lapack and BLAS</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133495#M25820</link>
      <description>&lt;P&gt;Almost all Lapack and BLAS routines, such as &lt;STRONG&gt;?gbtrf&lt;/STRONG&gt;,&amp;nbsp; are deterministic and use no global variables. In other words, all information is passed through the argument list, and the codepath chosen through the MKL routines is typically determined by the CPU family ID.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;My guess is that you are either not correctly passing the arguments or have used incompatible versions of the MKL libraries. To say more, I would need to see example code that does what you say it does. For starters, how did you verify that the correct arguments were passed?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 18:54:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133495#M25820</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-02-04T18:54:41Z</dc:date>
    </item>
    <item>
      <title>Ok so here's an altered</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133496#M25821</link>
      <description>&lt;P&gt;Ok so here's an altered version of the code provided in MKL's example:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;!SUBROUTINE INVERT()
PROGRAM MATRIXINV

      INTEGER          NIN, NOUT
      PARAMETER        (NIN=5,NOUT=6)
      INTEGER          MMAX, NMAX, KLMAX, KUMAX, LDAB
      PARAMETER        (MMAX=5,NMAX=5,KLMAX=3,KUMAX=2,LDAB=2*KLMAX+KUMAX+1)
!     .. Local Scalars ..
      INTEGER          I, INFO, J, K, KL, KU, M, N,num_el,j_min,j_max,LDB
!     .. Local Arrays ..
      REAL             AB(LDAB,NMAX), B(NMAX)
      REAL	       AUX(KLMAX+KUMAX+1)
      INTEGER          IPIV(NMAX)
!     .. External Subroutines ..
      EXTERNAL         SGBTRF
      EXTERNAL         SGBTRS
!     .. Intrinsic Functions ..
      INTRINSIC        MAX, MIN
!     .. Executable Statements ..
      WRITE (NOUT,*) 'SGBTRF Example Program Results'
!     Skip heading in data file
      OPEN(UNIT=10, FILE="sgbtrfx.d", STATUS='OLD')


      READ(10,*,END=12,IOSTAT=JFK,ERR=1099)
      READ(10,*,END=12,IOSTAT=JFK,ERR=1099) M, N, KL, KU

      IF (M.LE.MMAX .AND. N.LE.NMAX .AND. KL.LE.KLMAX .AND. KU.LE.KUMAX) THEN
!        Read A from data file

         K = KL + KU + 1
	  DO I=1,M
           num_el=K
	       j_min=i-kl
	       j_max=i+ku
	       IF(i+KU&amp;gt;N) then
             num_el=num_el-(i+ku-n)
	         j_max=N
           end if
	       IF(i-KL&amp;lt;=0) then
              num_el=num_el+i-kl-1
	          j_min=1
           end if
           
           READ(10,*,END=12,IOSTAT=JFK,ERR=1099) AUX(1:num_el)

           DO j=j_min,j_max
             AB(kl+ku+1+i-j,j)=aux(j-j_min+1)
           END DO
      END DO
	 

!        Factorize A
       CALL SGBTRF(M,N,KL,KU,AB,LDAB,IPIV,INFO)

         ! Fill in the RHS vector
       DO i=1,N
         b(i)=float(i)
	   end do
	   LDB=NMAX
!		 ! Solve linear system
       CALL SGBTRS('N',M,kl,ku,1,ab,ldab,ipiv,b,ldb,info)
       print*,b
!        Print details of factorization
       WRITE (NOUT,*)

       CALL PRINT_BAND_MATRIX( 'Details of factorization', M, N, KL,KL+KU, AB, LDAB )

!        Print pivot indices
       WRITE (NOUT,*)
       WRITE (NOUT,*) 'IPIV'
       WRITE (NOUT,99999) (IPIV(I),I=1,MIN(M,N))

       IF (INFO.NE.0) WRITE (NOUT,*) 'The factor U is singular'

      END IF
      STOP

99999 FORMAT ((3X,7I11))
1099  CONTINUE
12    CONTINUE
      END

!     End of SGBTRF Example

!  =============================================================================

!     Auxiliary routine: printing a banded matrix stored in packed form.

      SUBROUTINE PRINT_BAND_MATRIX( DESC, M, N, KL, KU, A, LDA )
      CHARACTER*(*)    DESC
      INTEGER          M, N, KL, KU, LDA
      REAL             A( LDA, * )
      REAL             A_B( M, N )
      REAL             ZERO
      PARAMETER        (ZERO=0.0)

      INTEGER          I, J, LB, UB

      DO J = 1, N
         LB = MAX(1, J - KU)
         UB = MIN(M, J + KL)
         DO I = 1, M
            IF ((LB.LE.I).AND.(I.LE.UB)) THEN
               A_B( I, J ) = A( KU + 1 + I - J, J )
            ELSE
               A_B( I, J) = ZERO
            END IF
         END DO
      END DO

      WRITE(*,*) DESC
      WRITE(*, 9999) ( J, J = 1, N)
      DO I = 1, M
         WRITE(*, 9998) I, ( A_B( I, J ), J = 1, N )
      END DO

 9998 FORMAT( I2, ' ', 11(:,1X,F10.4) )
 9999 FORMAT( '   ', 11(:,1X,I10) )

      RETURN
      END&lt;/PRE&gt;

&lt;P&gt;This works fine when compiling with:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;gfortran &amp;nbsp;-w MATRIXINV.f90 &amp;nbsp;-Wl,--start-group /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_intel_lp64.a /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_intel_thread.a /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/libmkl_core.a -Wl,--end-group lib/libaux_intel64_gfortran.a -L/opt/intel/compilers_and_libraries_2018/linux/mkl/../compiler/lib/intel64 -liomp5 &amp;nbsp;-lpthread -ldl -o matrixinv.out&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The file sgbtrfx.d is the one provided in MKL's examples. It contains a 4x4 matrix (I can check wether the input is correct with a simple print since the matrix is so small):&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;SGBTRF (F07BDE) Example Program Data
  4  4  1  2                  :Values of M, N, KL and KU
 -0.23   2.54  -3.66
 -6.98   2.46  -2.73  -2.13
         2.56   2.46   4.07
               -4.78  -3.82   :End of matrix A&lt;/PRE&gt;

&lt;P&gt;My problem really boils down to not knowing how to compile and link this bit of code to a program. Suppose the first line is uncommented (and the second commented) and that I have another file with&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;PROGRAM MASTER

CALL INVERT()

END&lt;/PRE&gt;

&lt;P&gt;I basically just want to know what the correct way of compiling and linking these two files is! Should be a simple matter and yet I can't seem to make it work. When using the lines for compilation and linking that I provided in my original post I get the wrong result.&lt;/P&gt;

&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 22:14:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133496#M25821</guid>
      <dc:creator>raposo__henrique</dc:creator>
      <dc:date>2018-02-04T22:14:37Z</dc:date>
    </item>
    <item>
      <title>You show different compiler</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133497#M25822</link>
      <description>&lt;P&gt;You show different compiler options in #1 and #3, and I am not sure which one you actually used. For example, you specified 8-byte integers in #1 and default (4-byte) integers in #3. You have to be quite correct with such options.&lt;/P&gt;

&lt;P&gt;Furthermore, I suggest that for the first few runs you do not use threading, optimization, etc. For linking, please consult the MKL link line advisor at &lt;A href="https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor" target="_blank"&gt;https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor&lt;/A&gt; .&lt;/P&gt;

&lt;P&gt;On my openSuse Linux system, I set MKLROOT and LD_LIBRARY_PATH, placed the source codes into files rmain.f90 and rpso.f90, and built the program with the command&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;gfortran -I${MKLROOT}/include rmain.f90 rpso.f90   -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
&lt;/PRE&gt;

&lt;P&gt;The program ran fine and gave correct results.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 01:38:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133497#M25822</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-02-05T01:38:27Z</dc:date>
    </item>
    <item>
      <title>I agree with Sham's</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133498#M25823</link>
      <description>I agree with Sham's suggestion you start with minimal command line options and later check the effect of adding complications incrementally.  It's hard to see through your forest, but you must choose either the libiomp5 or the libgomp and use exclusively the corresponding mkl libraries.</description>
      <pubDate>Mon, 05 Feb 2018 12:59:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133498#M25823</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2018-02-05T12:59:46Z</dc:date>
    </item>
    <item>
      <title>Thanks a lot, I now</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133499#M25824</link>
      <description>&lt;P&gt;Thanks a lot, I now understand what exactly is going wrong.&lt;/P&gt;

&lt;P&gt;When adding the flag -fdefault-real-8 , the MKL subroutine no longer gives me the right output. This actually means that whenever I declare 8 byte reals and provide them as inputs, I don't get the correct output.&lt;/P&gt;

&lt;P&gt;Do you know why this is? Shouldn't MKL work with different precisions?&lt;/P&gt;

&lt;P&gt;Thanks for your patience!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 20:23:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133499#M25824</guid>
      <dc:creator>raposo__henrique</dc:creator>
      <dc:date>2018-02-05T20:23:03Z</dc:date>
    </item>
    <item>
      <title>Thanks a lot, I now</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133500#M25825</link>
      <description>&lt;P&gt;Thanks a lot, I now understand what exactly is going wrong.&lt;/P&gt;

&lt;P&gt;When adding the flag -fdefault-real-8 , the MKL subroutine no longer gives me the right output. This actually means that whenever I declare 8 byte reals and provide them as inputs, I don't get the correct output.&lt;/P&gt;

&lt;P&gt;Do you know why this is? Shouldn't MKL work with different precisions?&lt;/P&gt;

&lt;P&gt;Thanks for your patience!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 20:26:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133500#M25825</guid>
      <dc:creator>raposo__henrique</dc:creator>
      <dc:date>2018-02-05T20:26:06Z</dc:date>
    </item>
    <item>
      <title>No, I think that you are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133501#M25826</link>
      <description>&lt;P&gt;No, I think that you are jumping to incorrect conclusions.&lt;/P&gt;

&lt;P&gt;Most MKL routines (especially those that are part of BLAS and Lapack) have versions for single- and double-precision real, and single- and double precision complex arguments. These have slightly different names, e.g., SDOT, DDOT, CDOT and ZDOT, commonly designated by ?DOT. With Pardiso, you have to specify whether you are passing single- or double -precision REAL arguments by setting appropriate elements of IPARM.&lt;/P&gt;

&lt;P&gt;When you call a routine using its implicit interface, be careful about compiler options (such as -fdefault-integer-8&lt;SPAN style="font-size: 12px;"&gt;)&amp;nbsp;&lt;/SPAN&gt;that change the types of default reals and integer variables. The MKL library routines will work only if they are given arguments of the expected types. If you are compiling for 64-bit targets, integer arguments may be 4- or 8-byte integers, but you have to use the *lp64 libraries in the former case and *ilp64 libraries in the latter case. If you do not do this matching correctly, the resulting program will often crash with no warning messages.&lt;/P&gt;

&lt;P&gt;In short, I think that your errors are more probably related to integer arguments than real arguments.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 21:03:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133501#M25826</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-02-05T21:03:41Z</dc:date>
    </item>
    <item>
      <title>Hi ,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133502#M25827</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I bought license for Intel parallel studio XE composer edition 2018&amp;nbsp;for windows&amp;nbsp;. &amp;nbsp;I have installed&amp;nbsp;the same&amp;nbsp;with math kernel library 2018 update 1. I have my code in Fortran and using it in Visual Studio 2017 with the intel fortran compiler. But I am getting error while build a program :&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Unresolved exernal Symbol_DIVPAG, UMACH , UMPOL etc .&amp;nbsp; which I understand MKL &amp;nbsp;is not liking with that.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Kindly help me to resolve this problem .&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Prabha&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 06:06:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133502#M25827</guid>
      <dc:creator>prabha_d_</dc:creator>
      <dc:date>2018-02-06T06:06:28Z</dc:date>
    </item>
    <item>
      <title>The routines named in #9 are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133503#M25828</link>
      <description>&lt;P&gt;The routines named in #9 are from the IMSL library, and they do not exist in MKL. You will need to consider purchasing an IMSL license or replacing the calls to the IMSL routines with alternatives from other sources.&lt;/P&gt;

&lt;P&gt;Prabha, it is not good etiquette to post unrelated responses in an existing thread. Please start a new thread for your question.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 10:38:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133503#M25828</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-02-06T10:38:27Z</dc:date>
    </item>
    <item>
      <title>Thank you so much for you</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133504#M25829</link>
      <description>&lt;P&gt;Thank you so much for you advice&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 11:10:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133504#M25829</guid>
      <dc:creator>prabha_d_</dc:creator>
      <dc:date>2018-02-06T11:10:26Z</dc:date>
    </item>
    <item>
      <title>Yes I should have been using</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133505#M25830</link>
      <description>&lt;P&gt;Yes I should have been using the&amp;nbsp;*ilp64 libraries. But most of all I had to use DGBTRF and not SGBTRF for the double precision case to work.&lt;/P&gt;

&lt;P&gt;Anyway, all is working smoothly now. Thank you for enlightening me!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 10:53:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-compiling-Fortran-code-with-MKL/m-p/1133505#M25830</guid>
      <dc:creator>raposo__henrique</dc:creator>
      <dc:date>2018-02-07T10:53:48Z</dc:date>
    </item>
  </channel>
</rss>

