<?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 NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809946#M3789</link>
    <description>I took the "Intel MKL RCI (P)CG Fortran-77 example" straight from the MKL manual, and ran it on another system &lt;BR /&gt;Linux 2.6.18-194.el5 #1 SMP Tue Mar 16 21:57:01 EDT 2010 ia64 ia64 ia64 GNU/Linux&lt;BR /&gt;&lt;BR /&gt;using V10.1 of the Intel compiler and V10.1 of MKL:&lt;BR /&gt;&lt;BR /&gt;without making any changes to the source code.&lt;BR /&gt;&lt;BR /&gt;ifort -I/opt/intel/mkl101/include/ rci.F -L$MKLPATH $MKLPATH/libmkl_solver_lp64_sequential.a -Wl,--start-group -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread&lt;BR /&gt;&lt;BR /&gt;and obtained&lt;BR /&gt;&lt;BR /&gt;[mecej4@login1 LANG]$ ./a.out&lt;BR /&gt; The system has been solved&lt;BR /&gt; The following solution obtained&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; expected solution&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt;Number of iterations: 8&lt;BR /&gt;This example has successfully PASSED through all steps of computation!&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 28 May 2010 12:37:27 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2010-05-28T12:37:27Z</dc:date>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver with mkl-10.1</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809942#M3785</link>
      <description>Hi there, &lt;BR /&gt;&lt;BR /&gt;I am trying to get the hang of the one of the MKL Iterative solvers: RCI FGMRES and I haven't been able to generate correct results of the INTEL's own example which is on page :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.intel.com/software/products/mkl/docs/WebHelp/appendices/mkl_appC_ISS.html#mkl_appC_ISS" target="_blank"&gt;http://www.intel.com/software/products/mkl/docs/WebHelp/appendices/mkl_appC_ISS.html#mkl_appC_ISS&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;under title :&lt;BR /&gt;&lt;BR /&gt;&lt;H2 class="sectiontitle"&gt;" Fortran Example of Using RCI (Preconditioned) 
Flexible Generalized Minimal Residual Solver.&lt;/H2&gt;&lt;P&gt;Fortran example 
results for a non-symmetric indefinite system. Upon successful execution
 of the solver, the following result is printed (up to rounding errors 
that depend on the computer system used): "&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;I am using thie intel compiler : intel-fc-10.1 and MKL library version 10.1&lt;BR /&gt;I changed the INTEL example to FORTRAN 90 using integer (KIND = 8) and REAL(KIND = 8) instead of F77 notations of integer and Double Precesion.&lt;BR /&gt;&lt;BR /&gt;I have been successful to compile this code with the follwoing command :&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;ifort RCIFGMRES_INTEL.f90 -g -o ISS.exe -I /usr/local/compilers/Intel/mkl-10.1/include -L$MKL_HOME/lib/em64t -lmkl -lmkl_lapack -lguide -Wl,--start-group $MKL_HOME/lib/em64/libmkl_solver_ilp64_sequential.a $MKL_HOME/lib/em64t/libmkl_intel_ilp64.a $MKL_HOME/lib/em64t/libmkl_solver_ilp64_sequential.a $MKL_HOME/lib/em64t/libmkl_core.a -lpthread -Wl,--end-group &lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;No error in compiling! &lt;BR /&gt;&lt;BR /&gt;When I run the program, my output is the following :&lt;BR /&gt;&lt;BR /&gt;[smirsa1@philip1 ISS]$ ./ISS.exe&lt;BR /&gt;--------------------------------------------------&lt;BR /&gt;The SIMPLEST example of usage of RCI FGMRES solver&lt;BR /&gt;to solve a non-symmetric indefinite non-degenerate&lt;BR /&gt; algebraic system of linear equations&lt;BR /&gt;--------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; The system has been solved&lt;BR /&gt;&lt;BR /&gt; The following solution has been obtained:&lt;BR /&gt;&lt;B&gt;COMPUTED_SOLUTION(1)= NaN &lt;BR /&gt;COMPUTED_SOLUTION(2)= -Infinity&lt;BR /&gt;COMPUTED_SOLUTION(3)= NaN &lt;BR /&gt;COMPUTED_SOLUTION(4)= Infinity &lt;BR /&gt;COMPUTED_SOLUTION(5)= NaN &lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt; The expected solution is:&lt;BR /&gt;EXPECTED_SOLUTION(1)=-0.100E+01&lt;BR /&gt;EXPECTED_SOLUTION(2)= 0.100E+01&lt;BR /&gt;EXPECTED_SOLUTION(3)= 0.000E+00&lt;BR /&gt;EXPECTED_SOLUTION(4)= 0.100E+01&lt;BR /&gt;EXPECTED_SOLUTION(5)=-0.100E+01&lt;BR /&gt;&lt;BR /&gt; Number of iterations:&lt;B&gt; 1&lt;/B&gt;&lt;BR /&gt;This example may have FAILED as either the number of iterations differs from the expected number of iterations&lt;B&gt; 5&lt;/B&gt; or the computed solution differs much from the expected solution (Euclidean norm is &lt;B&gt;NaN&lt;/B&gt; ), or both.&lt;BR /&gt;1&lt;BR /&gt;[smirsa1@philip1 ISS]$ &lt;BR /&gt;&lt;BR /&gt;Have u seen this behavior before? I can't figure out what it is I am doing wrong. I would be very grateful if somebody could tell me where this error is coming from. &lt;BR /&gt;&lt;BR /&gt;I hav attached my source code as well to this message.&lt;BR /&gt;&lt;BR /&gt;Thanks for reading! :)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 May 2010 23:20:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809942#M3785</guid>
      <dc:creator>miramin</dc:creator>
      <dc:date>2010-05-27T23:20:53Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809943#M3786</link>
      <description>Replace all instances of INTEGER(KIND=8) by INTEGER. With these changes, with the current versions of IFORT and MKL, I obtained&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;...&lt;BR /&gt;Number of iterations: 5&lt;BR /&gt;This example has successfully PASSED through all steps of computation!&lt;BR /&gt;&lt;BR /&gt;Unless the documentation for the MKL library explicitly specifies INTEGER(KIND=8) for a subroutine argument, use the default kind of integers.&lt;BR /&gt;&lt;BR /&gt;Please note, as well, that specifying explicit numbers after KIND= makes your code non portable. Use the built-in functions SELECTED_KIND, etc., instead.</description>
      <pubDate>Fri, 28 May 2010 00:18:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809943#M3786</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-05-28T00:18:00Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809944#M3787</link>
      <description>&lt;DIV id="tiny_quote"&gt;
                &lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=9662" class="basic" href="https://community.intel.com/en-us/profile/9662/"&gt;mecej4&lt;/A&gt;&lt;/DIV&gt;
                &lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;Replace all instances of INTEGER(KIND=8) by INTEGER. With these changes, with the current versions of IFORT and MKL, I obtained&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;...&lt;BR /&gt;Number of iterations: 5&lt;BR /&gt;This example has successfully PASSED through all steps of computation!&lt;BR /&gt;&lt;BR /&gt;Unless the documentation for the MKL library explicitly specifies INTEGER(KIND=8) for a subroutine argument, use the default kind of integers.&lt;BR /&gt;&lt;BR /&gt;Please note, as well, that specifying explicit numbers after KIND= makes your code non portable. Use the built-in functions SELECTED_KIND, etc., instead.&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you mecej4 for your kind help. But it does not work for me. I did exactly as u said and I have the same NaN answers.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What do u mean by "current versions of IFORT and MKL ?"&lt;BR /&gt;What is your version of intel compiler and MKL library ? &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks alot.&lt;BR /&gt;Amin&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 May 2010 03:43:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809944#M3787</guid>
      <dc:creator>miramin</dc:creator>
      <dc:date>2010-05-28T03:43:23Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809945#M3788</link>
      <description>Amin,&lt;DIV&gt;The latest versions of intel compilers ( both, C/C++ and Fortran) and MKL you can find &lt;A href="http://software.intel.com/en-us/articles/which-version-of-ipp--mkl--tbb-is-installed-with-intel-compiler-professional-edition/"&gt;here&lt;/A&gt;.&lt;/DIV&gt;&lt;DIV&gt;another words - the currents ( the latest ) version are: MKL 10.2 Update5 and Intel Compiler v.11.1&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 May 2010 05:54:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809945#M3788</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-05-28T05:54:28Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809946#M3789</link>
      <description>I took the "Intel MKL RCI (P)CG Fortran-77 example" straight from the MKL manual, and ran it on another system &lt;BR /&gt;Linux 2.6.18-194.el5 #1 SMP Tue Mar 16 21:57:01 EDT 2010 ia64 ia64 ia64 GNU/Linux&lt;BR /&gt;&lt;BR /&gt;using V10.1 of the Intel compiler and V10.1 of MKL:&lt;BR /&gt;&lt;BR /&gt;without making any changes to the source code.&lt;BR /&gt;&lt;BR /&gt;ifort -I/opt/intel/mkl101/include/ rci.F -L$MKLPATH $MKLPATH/libmkl_solver_lp64_sequential.a -Wl,--start-group -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread&lt;BR /&gt;&lt;BR /&gt;and obtained&lt;BR /&gt;&lt;BR /&gt;[mecej4@login1 LANG]$ ./a.out&lt;BR /&gt; The system has been solved&lt;BR /&gt; The following solution obtained&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; expected solution&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt;Number of iterations: 8&lt;BR /&gt;This example has successfully PASSED through all steps of computation!&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 May 2010 12:37:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809946#M3789</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-05-28T12:37:27Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809947#M3790</link>
      <description>&lt;DIV id="tiny_quote"&gt;
                &lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=9662" class="basic" href="https://community.intel.com/en-us/profile/9662/"&gt;mecej4&lt;/A&gt;&lt;/DIV&gt;
                &lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;I took the "Intel MKL RCI (P)CG Fortran-77 example" straight from the MKL manual, and ran it on another system &lt;BR /&gt;Linux 2.6.18-194.el5 #1 SMP Tue Mar 16 21:57:01 EDT 2010 ia64 ia64 ia64 GNU/Linux&lt;BR /&gt;&lt;BR /&gt;using V10.1 of the Intel compiler and V10.1 of MKL:&lt;BR /&gt;&lt;BR /&gt;without making any changes to the source code.&lt;BR /&gt;&lt;BR /&gt;ifort -I/opt/intel/mkl101/include/ rci.F -L$MKLPATH $MKLPATH/libmkl_solver_lp64_sequential.a -Wl,--start-group -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread&lt;BR /&gt;&lt;BR /&gt;and obtained&lt;BR /&gt;&lt;BR /&gt;[mecej4@login1 LANG]$ ./a.out&lt;BR /&gt; The system has been solved&lt;BR /&gt; The following solution obtained&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; expected solution&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt; 1.000 0.000 1.000 0.000&lt;BR /&gt;Number of iterations: 8&lt;BR /&gt;This example has successfully PASSED through all steps of computation!&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dear Mecej4,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U are solving the example of Conjugate Gradient solver not the &lt;/P&gt;&lt;H2 class="sectiontitle"&gt;Example. Fortran Example to Solve 
Non-Symmetric Indefinite System with Intel MKL RCI (P)FGMRES ((Preconditioned) Flexible Generalized Minimal                                                       RESidual method) .&lt;/H2&gt;&lt;BR /&gt;&lt;BR /&gt;BTW, I copied the whole example of FGMR example [F77] and was able to compile it on my system with the folllowing command :&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;ifort exm.f -g -o I.exe -I /usr/local/compilers/Intel/mkl-10.1/include -L$MKL_HOME/lib/em64t -lmkl -lmkl_lapack -lguide -Wl,--start-group $MKL_HOME/lib/em64t/libmkl_solver_ilp64_sequential.a $MKL_HOME/lib/em64t/libmkl_intel_ilp64.a $MKL_HOME/lib/em64t/libmkl_core.a -lpthread -lmkl -lmkl_lapack -lguide -Wl,--end-group -lpthread &lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;When I run it , it is aborted though!&lt;BR /&gt;&lt;BR /&gt;[smirsa1@philip1 ISS]$ ./I.exe &lt;BR /&gt;--------------------------------------------------&lt;BR /&gt;The SIMPLEST example of usage of RCI FGMRES solver&lt;BR /&gt;to solve a non-symmetric indefinite non-degenerate&lt;BR /&gt; algebraic system of linear equations&lt;BR /&gt;--------------------------------------------------&lt;BR /&gt;&lt;B&gt;Aborted&lt;/B&gt;&lt;BR /&gt;[smirsa1@philip1 ISS]$ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;My comiler version is : 10.1 and MKL version is 10.1&lt;BR /&gt;&lt;BR /&gt;Maybe I could use a debgger to figure out what is going wrong but I have a feeling it's because of the calls to the MKL library.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 May 2010 16:18:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809947#M3790</guid>
      <dc:creator>miramin</dc:creator>
      <dc:date>2010-05-28T16:18:34Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809948#M3791</link>
      <description>I downloaded the fixed format file from the first URL that you posted above. I also downloaded the free format file that you attached above, changed INTEGER*8 to INTEGER and ran this program, and I ran both with two versions of IFORT and MKL: (i) current versions (11.1 of IFORT, 10.2 of MKL) on Linux-x64, and (ii) older versions (10.1 of both) on Linux-IA64.&lt;BR /&gt;&lt;BR /&gt;All four runs gave me correct results.&lt;BR /&gt;&lt;BR /&gt;Are you processing the Fortran sources correctly? It occurred to me that perhaps you are not aware that on Linux file names are case-sensitive, and that to make preprocessing happen you have to give your source files .F (for fixed format) and .F90 (for free format) rather than .f and .f90? It is also possible to use the -fpp compiler switch for the same purpose.&lt;BR /&gt;&lt;BR /&gt;What OS are you running all this on?</description>
      <pubDate>Fri, 28 May 2010 18:02:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809948#M3791</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-05-28T18:02:37Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809949#M3792</link>
      <description>&lt;DIV id="tiny_quote"&gt;
                &lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=9662" class="basic" href="https://community.intel.com/en-us/profile/9662/"&gt;mecej4&lt;/A&gt;&lt;/DIV&gt;
                &lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;I downloaded the fixed format file from the first URL that you posted above. I also downloaded the free format file that you attached above, changed INTEGER*8 to INTEGER and ran this program, and I ran both with two versions of IFORT and MKL: (i) current versions (11.1 of IFORT, 10.2 of MKL) on Linux-x64, and (ii) older versions (10.1 of both) on Linux-IA64.&lt;BR /&gt;&lt;BR /&gt;All four runs gave me correct results.&lt;BR /&gt;&lt;BR /&gt;Are you processing the Fortran sources correctly? It occurred to me that perhaps you are not aware that on Linux file names are case-sensitive, and that to make preprocessing happen you have to give your source files .F (for fixed format) and .F90 (for free format) rather than .f and .f90? It is also possible to use the -fpp compiler switch for the same purpose.&lt;BR /&gt;&lt;BR /&gt;What OS are you running all this on?&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mecej4,&lt;/P&gt;&lt;P&gt;My OS is :&lt;/P&gt;&lt;P&gt;Linux philip1 2.6.18-128.el5 #1 SMP Wed Dec 17 11:41:38 EST 2008 x86_64 x86_64 x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I changed the name of my modified code to *.F90 and the INTEL original example code to *.F. I could comipel both of them with no problem but they both were &lt;B&gt;aborted.&lt;/B&gt; In the free-format file I had changed my INTEGER*8 to INTEGER. &lt;/P&gt;&lt;P&gt;This is strange error. I also used the flag &lt;I&gt;-fpp . I can compile but again my code is aborted. &lt;/I&gt;I am not sure what is it I am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2010 19:28:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809949#M3792</guid>
      <dc:creator>miramin</dc:creator>
      <dc:date>2010-05-28T19:28:15Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809950#M3793</link>
      <description>Well, I am stumped. Typically, we run into problems with sample code from manuals (such as the MKL manual) as part of the "initial acceptance test". If there are problems with paths, prerequisite software, OS/hardware incompatibilities, we find out because the example problems don't run correctly. But, you seem to have everything well set.&lt;BR /&gt;&lt;BR /&gt;There are a couple of things to try. These will take time, and whether to do so or not is up to you decide. &lt;BR /&gt;&lt;BR /&gt;0. Seek out another machine with a similar software set up, and see if you can reproduce the issue.&lt;BR /&gt;&lt;BR /&gt;1. Compile with -g as an additional compiler flag, then run. If the resulting code again says &lt;B&gt;Aborted &lt;/B&gt;then we are in business. Run under a debugger, such as gdb. Run with the command &lt;I&gt;gdb ./a.out&lt;/I&gt;, then enter the gdb command &lt;I&gt;r&lt;/I&gt;. After the &lt;B&gt;Aborted &lt;/B&gt;message is printed, enter &lt;I&gt;bt full&lt;/I&gt;. The resulting back-trace may help find out where the problem lies.&lt;BR /&gt;&lt;BR /&gt;2. Similarly, you may use a symbolic debugger such as &lt;I&gt;idb&lt;/I&gt;, with comes with &lt;I&gt;IFort&lt;/I&gt; or &lt;I&gt;ddd&lt;/I&gt;, which is a symbolic front end to &lt;I&gt;gdb&lt;/I&gt;, to find the location in your code where the abort occurs.&lt;BR /&gt;&lt;BR /&gt;3. The old standby is to narrow down the location of the error by inserting WRITE statements. &lt;BR /&gt;&lt;BR /&gt;I regret that I have no better suggestions.&lt;BR /&gt;</description>
      <pubDate>Sat, 29 May 2010 13:39:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809950#M3793</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-05-29T13:39:13Z</dc:date>
    </item>
    <item>
      <title>NaN values in INTEL Fortran Example Using  RCI FGMRES Solver wi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809951#M3794</link>
      <description>Dear mecej4,&lt;BR /&gt;&lt;BR /&gt;I could run the INTEL exmaple code successfully at last. The admin of the system I am using installed the latest version of MKL (10.2) and so with changing the INTEGER*8 to INTEGER and also changing the name fo the file from *.f90 to *.F90 I could fix my problem and everything seems to be working now. &lt;BR /&gt;&lt;BR /&gt;So I think my problem was that I was using the latest version of INTEL compiler and version 10.1 of MKL together. Now that I am using the latest INTEL compiler and the MKL library (10.2) everything seems to be working.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you for your input and help, I am really grateful to u.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Amin</description>
      <pubDate>Mon, 31 May 2010 15:32:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/NaN-values-in-INTEL-Fortran-Example-Using-RCI-FGMRES-Solver-with/m-p/809951#M3794</guid>
      <dc:creator>miramin</dc:creator>
      <dc:date>2010-05-31T15:32:33Z</dc:date>
    </item>
  </channel>
</rss>

