<?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: calling PARDISO from fortran 90 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889069#M10244</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;added the MVSC 2005 project with the example described above. Probably it will help you. Please pay attention the project contains F90 header file "mkl_pardiso.f90" included into the project.&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi Gennady,&lt;BR /&gt;&lt;BR /&gt;I'm trying to use the MKL pardiso solver. I am able to compile the program, however when I run the program I run into an "abort trap" message.&lt;BR /&gt;&lt;BR /&gt;I downloaded the sample code from your code and the only changes I made was changing the real(kind=8) pointers to complex and instead of reading in a file for a,ivect, and jvect, I created them with another program. &lt;BR /&gt;&lt;BR /&gt;Do you have any suggestions as to why I'm running into such a problem. Are there certain test I can do to pinpoint the problem?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Oct 2009 21:03:09 GMT</pubDate>
    <dc:creator>vchan1186</dc:creator>
    <dc:date>2009-10-23T21:03:09Z</dc:date>
    <item>
      <title>calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889065#M10240</link>
      <description>&lt;BR /&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I have seen some related issues in the discussion forum, but could not find help for my problem, so i hope someone can point me to a good place or help me out!&lt;BR /&gt;&lt;BR /&gt;I am trying to call PARDISO from fortran 90. I first rewrote the example pardiso_sym_f.f to .f90. I run into problems with the type declarations for several of the variables:&lt;BR /&gt;&lt;BR /&gt;ifort -O2 -check all -L /libmkl_solver_sequential.a -Wl,--start-group -lmkl_intel -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread -c pardiso_sym_f.f90&lt;BR /&gt;pardiso_sym_f.f90(101): error #6633: The type of the actual argument differs from the type of the dummy argument. [PT]&lt;BR /&gt; call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt;-------------------^&lt;BR /&gt;pardiso_sym_f.f90(101): error #7836: If the actual argument is scalar, the corresponding dummy argument shall be scalar unless the actual argument is an element of an array that is not an assumed-shape or pointer array, or a substring of such an element. [PERM]&lt;BR /&gt; call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt;-----------^&lt;BR /&gt;pardiso_sym_f.f90(101): error #7836: If the actual argument is scalar, the corresponding dummy argument shall be scalar unless the actual argument is an element of an array that is not an assumed-shape or pointer array, or a substring of such an element. &lt;B&gt;&lt;BR /&gt; call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt;-----------^&lt;BR /&gt;pardiso_sym_f.f90(101): error #7836: If the actual argument is scalar, the corresponding dummy argument shall be scalar unless the actual argument is an element of an array that is not an assumed-shape or pointer array, or a substring of such an element. &lt;X&gt;&lt;BR /&gt; call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt;-----------^&lt;BR /&gt;&lt;BR /&gt;etc&lt;BR /&gt;&lt;BR /&gt;The code follows here:&lt;BR /&gt;&lt;BR /&gt; INCLUDE 'mkl_pardiso.f90' ! Include the standard pardiso "header file."&lt;BR /&gt; PROGRAM pardiso_sym&lt;BR /&gt;!&lt;BR /&gt; use mkl_pardiso&lt;BR /&gt; IMPLICIT NONE&lt;BR /&gt; INTEGER, PARAMETER :: dp = KIND(1.0D0)&lt;BR /&gt;!.. Internal solver memory pointer&lt;BR /&gt; INTEGER,allocatable::pt(:)&lt;BR /&gt;!.. All other variables&lt;BR /&gt; INTEGER:: maxfct, mnum, mtype, phase, n, nrhs, error, msglvl&lt;BR /&gt; INTEGER,allocatable::iparm(:), ia(:),ja(:)&lt;BR /&gt; REAL(kind=dp),allocatable::a(:),b(:),x(:)&lt;BR /&gt; INTEGER:: i, idum&lt;BR /&gt; real(kind=dp):: waltime1, waltime2, ddum&lt;BR /&gt; allocate(pt(64))&lt;BR /&gt; allocate(iparm(64),ia(9),ja(18))&lt;BR /&gt; allocate(a(18),b(8),x(8))&lt;BR /&gt;!&lt;BR /&gt;!.. Fill all arrays containing matrix data.&lt;BR /&gt; n = 8&lt;BR /&gt; nrhs = 1&lt;BR /&gt; maxfct = 1&lt;BR /&gt; mnum = 1&lt;BR /&gt; ia = (/1,5,8,10,12,15,17,18,19/)&lt;BR /&gt; ja = (/1,3,6,7,2,3,5,3,8,4,7,5,6,7,6,8,7,8/)&lt;BR /&gt; a = (/7.d0,1.d0,2.d0,7.d0,-4.d0,8.d0,2.d0,1.d0,5.d0, &amp;amp;&lt;BR /&gt; 7.d0,9.d0,5.d0,1.d0,5.d0,-1.d0,5.d0,11.d0,5.d0/)&lt;BR /&gt;!..&lt;BR /&gt;!.. Set up PARDISO control parameter&lt;BR /&gt;!..&lt;BR /&gt; iparm = 0&lt;BR /&gt; iparm(1) = 1 ! no solver default&lt;BR /&gt; iparm(2) = 2 ! fill-in reordering from METIS&lt;BR /&gt; iparm(3) = 1 ! numbers of processors&lt;BR /&gt; iparm(4) = 0 ! no iterative-direct algorithm&lt;BR /&gt; iparm(5) = 0 ! no user fill-in reducing permutation&lt;BR /&gt; iparm(6) = 0 ! =0 solution on the first n compoments of x&lt;BR /&gt; iparm(7) = 0 ! not in use&lt;BR /&gt; iparm(8) = 9 ! numbers of iterative refinement steps&lt;BR /&gt; iparm(9) = 0 ! not in use&lt;BR /&gt; iparm(10) = 13 ! perturbe the pivot elements with 1E-13&lt;BR /&gt; iparm(11) = 1 ! use nonsymmetric permutation and scaling MPS&lt;BR /&gt; iparm(12) = 0 ! not in use&lt;BR /&gt; iparm(13) = 0 ! maximum weighted matching algorithm is switched-off&lt;BR /&gt; !(default for symmetric).&lt;BR /&gt; !Try iparm(13) = 1 in case of inappropriate accuracy&lt;BR /&gt; iparm(14) = 0 ! Output: number of perturbed pivots&lt;BR /&gt; iparm(15) = 0 ! not in use&lt;BR /&gt; iparm(16) = 0 ! not in use&lt;BR /&gt; iparm(17) = 0 ! not in use&lt;BR /&gt; iparm(18) = -1 ! Output: number of nonzeros in the factor LU&lt;BR /&gt; iparm(19) = -1 ! Output: Mflops for LU factorization&lt;BR /&gt; iparm(20) = 0 ! Output: Numbers of CG Iterations&lt;BR /&gt;!&lt;BR /&gt; error = 0 ! initialize error flag&lt;BR /&gt; msglvl = 1 ! print statistical information&lt;BR /&gt; mtype = -2 ! symmetric, indefinite&lt;BR /&gt;!&lt;BR /&gt;!.. Initialize the internal solver memory pointer. This is only&lt;BR /&gt;! necessary for the FIRST call of the PARDISO solver.&lt;BR /&gt; pt = 0&lt;BR /&gt;!&lt;BR /&gt;!.. Reordering and Symbolic Factorization, This step also allocates&lt;BR /&gt;! all memory that is necessary for the factorization&lt;BR /&gt; phase = 11 ! only reordering and symbolic factorization&lt;BR /&gt; call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt; idum, nrhs, iparm, msglvl, ddum, ddum, error)&lt;BR /&gt; WRITE(*,*) 'Reordering completed ... '&lt;BR /&gt; IF (error .NE. 0) THEN&lt;BR /&gt; WRITE(*,*) 'The following ERROR was detected: ', error&lt;BR /&gt; STOP&lt;BR /&gt; END IF&lt;BR /&gt; WRITE(*,*) 'Number of nonzeros in factors = ',iparm(18)&lt;BR /&gt; WRITE(*,*) 'Number of factorization MFLOPS = ',iparm(19)&lt;BR /&gt;!&lt;BR /&gt;!.. Factorization.&lt;BR /&gt; phase = 22 ! only factorization&lt;BR /&gt; CALL pardiso (pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt; idum, nrhs, iparm, msglvl, ddum, ddum, error)&lt;BR /&gt; WRITE(*,*) 'Factorization completed ... '&lt;BR /&gt; IF (error .NE. 0) THEN&lt;BR /&gt; WRITE(*,*) 'The following ERROR was detected: ', error&lt;BR /&gt; STOP&lt;BR /&gt; ENDIF&lt;BR /&gt;!&lt;BR /&gt;!.. Back substitution and iterative refinement&lt;BR /&gt; iparm(8) = 2 ! max numbers of iterative refinement steps&lt;BR /&gt; phase = 33 ! only factorization&lt;BR /&gt; do i = 1, n&lt;BR /&gt; b(i) = 1.d0&lt;BR /&gt; enddo&lt;BR /&gt; CALL pardiso (pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt; idum, nrhs, iparm, msglvl, b, x, error)&lt;BR /&gt; WRITE(*,*) 'Solve completed ... '&lt;BR /&gt; WRITE(*,*) 'The solution of the system is '&lt;BR /&gt; DO i = 1, n&lt;BR /&gt; WRITE(*,*) ' x(',i,') = ', x(i)&lt;BR /&gt; ENDDO&lt;BR /&gt;!&lt;BR /&gt;!.. Termination and release of memory&lt;BR /&gt; phase = -1 ! release internal memory&lt;BR /&gt; CALL pardiso (pt, maxfct, mnum, mtype, phase, n, ddum, idum, &amp;amp;&lt;BR /&gt; idum,idum, nrhs, iparm, msglvl, ddum, ddum, error)&lt;BR /&gt;!&lt;BR /&gt; deallocate(iparm,ia,ja,a,b,x,pt)&lt;BR /&gt; END PROGRAM pardiso_sym&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/X&gt;&lt;/B&gt;</description>
      <pubDate>Fri, 21 Aug 2009 08:30:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889065#M10240</guid>
      <dc:creator>susannebuiter</dc:creator>
      <dc:date>2009-08-21T08:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889066#M10241</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/96606"&gt;susannebuiter&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;call pardiso(pt, maxfct, mnum, mtype, phase, n, a, ia, ja, &amp;amp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The code follows here:&lt;BR /&gt;&lt;BR /&gt; !.. Internal solver memory pointer&lt;BR /&gt; INTEGER,allocatable::pt(:)&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Compiler is pretty clear on what it doesn't like. You declared pt as allocatable array of integers (which platform are you on? You need observe as it is integer*4 or integer*8), while (after checking the subroutine interface, defined in Include file) it expects TYPE(MKL_PARDISO_HANDLE), INTENT(INOUT) :: PT(*).&lt;BR /&gt;You need to fix this (I didn't check more than that, so other problems may be down the road) as well as argument corresponding to perm (expected to be array) while you're passing idum (scalar, integer).&lt;BR /&gt;&lt;BR /&gt;A.&lt;BR /&gt;&lt;BR /&gt;Note: if you USE mkl_pardiso then you don't need include.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Aug 2009 04:21:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889066#M10241</guid>
      <dc:creator>ArturGuzik</dc:creator>
      <dc:date>2009-08-22T04:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889067#M10242</link>
      <description>&lt;BR /&gt;Susanne,&lt;BR /&gt;&lt;BR /&gt;It seems we need to add the example about calling pardiso from fortran 90.&lt;BR /&gt;&lt;BR /&gt;In general , your program should be looks like ( this is just example)&lt;BR /&gt;&lt;BR /&gt;PROGRAM PardisoTest&lt;BR /&gt;&lt;BR /&gt; use MKL_PARDISO&lt;BR /&gt; &lt;BR /&gt; IMPLICIT NONE&lt;BR /&gt; &lt;BR /&gt; TYPE(MKL_PARDISO_HANDLE), pointer :: PT(:) =&amp;gt; null()&lt;BR /&gt; integer, pointer :: idum(:) =&amp;gt; null(), ivect(:) =&amp;gt; null(), jvect(:) =&amp;gt; null()&lt;BR /&gt; real(KIND=8), pointer :: ddum(:) =&amp;gt; null(), a(:) =&amp;gt; null()&lt;BR /&gt; INTEGER maxfct, mnum, mtype, phase, nrhs, error, msglvl, i, nnz, nequations&lt;BR /&gt; INTEGER iparm(64)&lt;BR /&gt; &lt;BR /&gt; DATA nrhs /1/, maxfct /1/, mnum /1/&lt;BR /&gt; &lt;BR /&gt; nnz = XXX&lt;BR /&gt; nequations = XXX&lt;BR /&gt; &lt;BR /&gt; do i = 1, 64&lt;BR /&gt; iparm(i) = 0&lt;BR /&gt; end do&lt;BR /&gt; iparm(1) = 0 ! solver default&lt;BR /&gt; error = 0 ! initialize error flag&lt;BR /&gt; msglvl = 1 ! print statistical information&lt;BR /&gt; mtype = 11 ! real unsymmetric --&amp;gt; as an example  &lt;BR /&gt; &lt;BR /&gt; allocate( PT(64), idum(0), ddum(0), a(nnz), ivect(nequations+1), jvect(nnz) )&lt;BR /&gt; &lt;BR /&gt; do i = 1, 64&lt;BR /&gt; PT(i)%DUMMY = 0&lt;BR /&gt; end do&lt;BR /&gt; &lt;BR /&gt; open (unit = 138, file = " ..... ", .... ) &lt;BR /&gt; do i = 1, nnz&lt;BR /&gt; read (138) a(i)&lt;BR /&gt; end do&lt;BR /&gt; &lt;BR /&gt; do i = 1, nnz&lt;BR /&gt; read (138) jvect(i)&lt;BR /&gt; end do&lt;BR /&gt; &lt;BR /&gt; do i = 1, (nequations+1)&lt;BR /&gt; read (138) ivect(i)&lt;BR /&gt; end do&lt;BR /&gt; close(138)&lt;BR /&gt; &lt;BR /&gt; phase = 11&lt;BR /&gt;&lt;BR /&gt; CALL pardiso (PT, maxfct, mnum, mtype, phase, nequations, a, ivect, jvect, idum, nrhs, iparm, msglvl, ddum, ddum, error)&lt;BR /&gt;&lt;BR /&gt;! check the error &lt;BR /&gt;&lt;BR /&gt;END PROGRAM PardisoTest&lt;BR /&gt;&lt;BR /&gt;Regards, Gennady&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Aug 2009 06:25:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889067#M10242</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-08-24T06:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889068#M10243</link>
      <description>added the MVSC 2005 project with the example described above. Probably it will help you. Please pay attention the project contains F90 header file "mkl_pardiso.f90" included into the project.&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Aug 2009 06:33:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889068#M10243</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-08-24T06:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889069#M10244</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;added the MVSC 2005 project with the example described above. Probably it will help you. Please pay attention the project contains F90 header file "mkl_pardiso.f90" included into the project.&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi Gennady,&lt;BR /&gt;&lt;BR /&gt;I'm trying to use the MKL pardiso solver. I am able to compile the program, however when I run the program I run into an "abort trap" message.&lt;BR /&gt;&lt;BR /&gt;I downloaded the sample code from your code and the only changes I made was changing the real(kind=8) pointers to complex and instead of reading in a file for a,ivect, and jvect, I created them with another program. &lt;BR /&gt;&lt;BR /&gt;Do you have any suggestions as to why I'm running into such a problem. Are there certain test I can do to pinpoint the problem?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Oct 2009 21:03:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889069#M10244</guid>
      <dc:creator>vchan1186</dc:creator>
      <dc:date>2009-10-23T21:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: calling PARDISO from fortran 90</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889070#M10245</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/439390"&gt;vchan1186&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;added the MVSC 2005 project with the example described above. Probably it will help you. Please pay attention the project contains F90 header file "mkl_pardiso.f90" included into the project.&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi Gennady,&lt;BR /&gt;&lt;BR /&gt;I'm trying to use the MKL pardiso solver. I am able to compile the program, however when I run the program I run into an "abort trap" message.&lt;BR /&gt;&lt;BR /&gt;I downloaded the sample code from your code and the only changes I made was changing the real(kind=8) pointers to complex and instead of reading in a file for a,ivect, and jvect, I created them with another program. &lt;BR /&gt;&lt;BR /&gt;Do you have any suggestions as to why I'm running into such a problem. Are there certain test I can do to pinpoint the problem?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
No idea at this moment what's going wrong with the code. &lt;BR /&gt;Can you enable matrix checker? iparm(27)=1.&lt;BR /&gt;What phase of calculation do you see the crash?&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Oct 2009 05:45:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/calling-PARDISO-from-fortran-90/m-p/889070#M10245</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-10-24T05:45:40Z</dc:date>
    </item>
  </channel>
</rss>

