Sorry but I am new to PETSc. This is out of my ability to find why this happens in PETSc.<div>I am happy to do some tests to look for the tests if you can instruct me how to do that.</div><div><br></div><div>There is an option in config/configure.py, which I do not use and may be relevant to check.</div>
<div><div>  --with-64-bit-pointers=&lt;bool&gt;</div><div>   : Use 64 bit compilers and libraries</div><div><br></div><div>Thanks,</div><div>Mengda</div><br><div class="gmail_quote">On Mon, Jan 17, 2011 at 2:01 PM, Barry Smith <span dir="ltr">&lt;<a href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
   Mengda,<br>
<br>
    Thanks for the report. At the website it says &quot;You perform arithmetic on 64-bit pointers and then pass the results to an inline function that expects an &quot;int&quot; data type.&quot; Do you know specifically where this is happening in PETSc? We don&#39;t intend to in PETSc &quot; perform arithmetic on 64-bit pointers and then pass the results to an inline function that expects an &quot;int&quot; data type.<br>

<br>
   Thanks<br>
<font color="#888888"><br>
   Barry<br>
</font><div><div></div><div class="h5"><br>
<br>
<br>
On Jan 17, 2011, at 3:43 PM, Mengda Wu wrote:<br>
<br>
&gt; This indeed is caused by a bug in Visual c++ 2005 64bit compiler when using<br>
&gt; optimization.<br>
&gt; The result is correct after installing the hotfix:<br>
&gt; <a href="http://support.microsoft.com/kb/976617/" target="_blank">http://support.microsoft.com/kb/976617/</a><br>
&gt; Thanks a lot!<br>
&gt;<br>
&gt; Mengda<br>
&gt;<br>
&gt; On Mon, Jan 17, 2011 at 12:27 PM, Barry Smith &lt;<a href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; Compiler bug. Immediately before the call to MatMult() in the code add the<br>
&gt;&gt; two lines<br>
&gt;&gt;<br>
&gt;&gt; ierr = VecView(u,0);<br>
&gt;&gt; ierr = MatView(A,0);<br>
&gt;&gt;<br>
&gt;&gt; how large are the two objects? Given the code it is inconceivable that<br>
&gt;&gt; suddenly the vector length becomes 57.<br>
&gt;&gt;<br>
&gt;&gt;  Barry<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Jan 17, 2011, at 2:43 AM, Mengda Wu wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Hi all,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   I just compiled the debugged and optimized versions of petsc-3.1-p7.<br>
&gt;&gt;&gt; Both are successful. I am running on Windows Vista 64bit machine.<br>
&gt;&gt;&gt; The C/C++ compiler is cl.exe from visual studio 2005 (64 bit) and no<br>
&gt;&gt; FORTRAN<br>
&gt;&gt;&gt; compiler is used. BLAS/LAPACK<br>
&gt;&gt;&gt; support comes from Intel MKL-10.1.3.028 (under em64t\lib). No MPI is<br>
&gt;&gt; used.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  The debugged petsc was configured with:<br>
&gt;&gt;&gt;  $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt;&gt;&gt; --with-mpi=<br>
&gt;&gt;&gt; 0<br>
&gt;&gt;&gt;<br>
&gt;&gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_thread.lib,mkl_core.lib<br>
&gt;&gt;&gt; ,libiomp5mt.lib] -CFLAGS=&#39;-MDd -W3 -Z7&#39; -CXXFLAGS=&#39;-MDd -W3 -Z7&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  The optimized petsc was configured with:<br>
&gt;&gt;&gt;  $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt;&gt;&gt; --with-mpi=<br>
&gt;&gt;&gt; 0 --with-debugging=0<br>
&gt;&gt;&gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_threa<br>
&gt;&gt;&gt; d.lib,mkl_core.lib,libiomp5mt.lib]  -CFLAGS=&#39;-MD -wd4996 -O2&#39;<br>
&gt;&gt; -CXXFLAGS=&#39;-MD<br>
&gt;&gt;&gt; -w<br>
&gt;&gt;&gt; d4996 -O2&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  When I run ksp/examples/tutorials/Ex2.c. The result with debugged petsc<br>
&gt;&gt;&gt; is<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;  Norm of error 0.000156044 iterations 6<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  However, there are errors with the optimized petsc with the output as<br>
&gt;&gt;&gt; follows:<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt; [0]PETSC ERROR: --------------------- Error Message<br>
&gt;&gt;&gt; ----------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: Nonconforming object sizes!<br>
&gt;&gt;&gt; [0]PETSC ERROR: Mat mat,Vec y: global dim 56 57!<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: Petsc Release Version 3.1.0, Patch 7, Mon Dec 20 14:26:37<br>
&gt;&gt;&gt; CST 20<br>
&gt;&gt;&gt; 10<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/changes/index.html for recent updates.<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/faq.html for hints about trouble shooting.<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/index.html for manual pages.<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt;&gt; D:\Develop\Test\PETSc\petsc-3.1-p7\src\ksp\ksp\examples\tutorial<br>
&gt;&gt;&gt; s\ex2.exe on a cygwin-c- named CVBRL-38 by mengda Mon Jan 17 00:35:15<br>
&gt;&gt; 2011<br>
&gt;&gt;&gt; [0]PETSC ERROR: Libraries linked from<br>
&gt;&gt;&gt; /cygdrive/d/Develop/Test/PETSc/petsc-3.1-p<br>
&gt;&gt;&gt; 7/cygwin-c-opt/lib<br>
&gt;&gt;&gt; [0]PETSC ERROR: Configure run at Sun Jan 16 23:34:25 2011<br>
&gt;&gt;&gt; [0]PETSC ERROR: Configure options --with-cc=cl --with-fc=0 --with-cxx=cl<br>
&gt;&gt;&gt; --with-<br>
&gt;&gt;&gt; mpi=0 --with-debugging=0<br>
&gt;&gt;&gt; --with-blas-lapack-lib=&quot;[mkl_intel_lp64.lib,mkl_intel_t<br>
&gt;&gt;&gt; hread.lib,mkl_core.lib,libiomp5mt.lib]&quot; -CFLAGS=&quot;-MD -wd4996 -O2&quot;<br>
&gt;&gt;&gt; -CXXFLAGS=&quot;-MD<br>
&gt;&gt;&gt; -wd4996 -O2&quot; --useThreads=0<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: MatMult() line 1888 in<br>
&gt;&gt;&gt; src/mat/interface/D:\Develop\Test\PETSc\P<br>
&gt;&gt;&gt; ETSC-~1.1-P\src\mat\INTERF~1\matrix.c<br>
&gt;&gt;&gt; [0]PETSC ERROR: main() line 146 in<br>
&gt;&gt;&gt; src/ksp/ksp/examples/tutorials/D:\Develop\Tes<br>
&gt;&gt;&gt; t\PETSc\PETSC-~1.1-P\src\ksp\ksp\examples\TUTORI~1\ex2.c<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This application has requested the Runtime to terminate it in an unusual<br>
&gt;&gt;&gt; way.<br>
&gt;&gt;&gt; Please contact the application&#39;s support team for more information.<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;  I am wondering what problems may lead to the errors. Please let me know<br>
&gt;&gt;&gt; if you need more<br>
&gt;&gt;&gt; information.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Thanks,<br>
&gt;&gt;&gt; Mengda<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hi all,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;    I just compiled the debugged and optimized versions of petsc-3.1-p7.<br>
&gt;&gt; Both are successful. I am running on Windows Vista 64bit machine.<br>
&gt;&gt;&gt; The C/C++ compiler is cl.exe from visual studio 2005 (64 bit) and no<br>
&gt;&gt; FORTRAN compiler is used. BLAS/LAPACK<br>
&gt;&gt;&gt; support comes from Intel MKL-10.1.3.028 (under em64t\lib). No MPI is<br>
&gt;&gt; used.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   The debugged petsc was configured with:<br>
&gt;&gt;&gt;   $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt;&gt; --with-mpi=<br>
&gt;&gt;&gt; 0<br>
&gt;&gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_thread.lib,mkl_core.lib<br>
&gt;&gt;&gt; ,libiomp5mt.lib] -CFLAGS=&#39;-MDd -W3 -Z7&#39; -CXXFLAGS=&#39;-MDd -W3 -Z7&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   The optimized petsc was configured with:<br>
&gt;&gt;&gt;   $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt;&gt; --with-mpi=<br>
&gt;&gt;&gt; 0 --with-debugging=0<br>
&gt;&gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_threa<br>
&gt;&gt;&gt; d.lib,mkl_core.lib,libiomp5mt.lib]  -CFLAGS=&#39;-MD -wd4996 -O2&#39;<br>
&gt;&gt; -CXXFLAGS=&#39;-MD -w<br>
&gt;&gt;&gt; d4996 -O2&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   When I run ksp/examples/tutorials/Ex2.c. The result with debugged<br>
&gt;&gt; petsc is<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;   Norm of error 0.000156044 iterations 6<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   However, there are errors with the optimized petsc with the output as<br>
&gt;&gt; follows:<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt; [0]PETSC ERROR: --------------------- Error Message<br>
&gt;&gt; ----------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: Nonconforming object sizes!<br>
&gt;&gt;&gt; [0]PETSC ERROR: Mat mat,Vec y: global dim 56 57!<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: Petsc Release Version 3.1.0, Patch 7, Mon Dec 20 14:26:37<br>
&gt;&gt; CST 20<br>
&gt;&gt;&gt; 10<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/changes/index.html for recent updates.<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/faq.html for hints about trouble shooting.<br>
&gt;&gt;&gt; [0]PETSC ERROR: See docs/index.html for manual pages.<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt; D:\Develop\Test\PETSc\petsc-3.1-p7\src\ksp\ksp\examples\tutorial<br>
&gt;&gt;&gt; s\ex2.exe on a cygwin-c- named CVBRL-38 by mengda Mon Jan 17 00:35:15<br>
&gt;&gt; 2011<br>
&gt;&gt;&gt; [0]PETSC ERROR: Libraries linked from<br>
&gt;&gt; /cygdrive/d/Develop/Test/PETSc/petsc-3.1-p<br>
&gt;&gt;&gt; 7/cygwin-c-opt/lib<br>
&gt;&gt;&gt; [0]PETSC ERROR: Configure run at Sun Jan 16 23:34:25 2011<br>
&gt;&gt;&gt; [0]PETSC ERROR: Configure options --with-cc=cl --with-fc=0 --with-cxx=cl<br>
&gt;&gt; --with-<br>
&gt;&gt;&gt; mpi=0 --with-debugging=0<br>
&gt;&gt; --with-blas-lapack-lib=&quot;[mkl_intel_lp64.lib,mkl_intel_t<br>
&gt;&gt;&gt; hread.lib,mkl_core.lib,libiomp5mt.lib]&quot; -CFLAGS=&quot;-MD -wd4996 -O2&quot;<br>
&gt;&gt; -CXXFLAGS=&quot;-MD<br>
&gt;&gt;&gt; -wd4996 -O2&quot; --useThreads=0<br>
&gt;&gt;&gt; [0]PETSC ERROR:<br>
&gt;&gt; ----------------------------------------------------------------<br>
&gt;&gt;&gt; --------<br>
&gt;&gt;&gt; [0]PETSC ERROR: MatMult() line 1888 in<br>
&gt;&gt; src/mat/interface/D:\Develop\Test\PETSc\P<br>
&gt;&gt;&gt; ETSC-~1.1-P\src\mat\INTERF~1\matrix.c<br>
&gt;&gt;&gt; [0]PETSC ERROR: main() line 146 in<br>
&gt;&gt; src/ksp/ksp/examples/tutorials/D:\Develop\Tes<br>
&gt;&gt;&gt; t\PETSc\PETSC-~1.1-P\src\ksp\ksp\examples\TUTORI~1\ex2.c<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This application has requested the Runtime to terminate it in an unusual<br>
&gt;&gt; way.<br>
&gt;&gt;&gt; Please contact the application&#39;s support team for more information.<br>
&gt;&gt;&gt; =================================================================<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   I am wondering what problems may lead to the errors. Please let me<br>
&gt;&gt; know if you need more<br>
&gt;&gt;&gt; information.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Thanks,<br>
&gt;&gt;&gt; Mengda<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; This indeed is caused by a bug in Visual c++ 2005 64bit compiler when using optimization.<br>
&gt; The result is correct after installing the hotfix: <a href="http://support.microsoft.com/kb/976617/" target="_blank">http://support.microsoft.com/kb/976617/</a><br>
&gt; Thanks a lot!<br>
&gt;<br>
&gt; Mengda<br>
&gt;<br>
&gt; On Mon, Jan 17, 2011 at 12:27 PM, Barry Smith &lt;<a href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt; wrote:<br>
&gt;<br>
&gt;  Compiler bug. Immediately before the call to MatMult() in the code add the two lines<br>
&gt;<br>
&gt; ierr = VecView(u,0);<br>
&gt; ierr = MatView(A,0);<br>
&gt;<br>
&gt; how large are the two objects? Given the code it is inconceivable that suddenly the vector length becomes 57.<br>
&gt;<br>
&gt;   Barry<br>
&gt;<br>
&gt;<br>
&gt; On Jan 17, 2011, at 2:43 AM, Mengda Wu wrote:<br>
&gt;<br>
&gt; &gt; Hi all,<br>
&gt; &gt;<br>
&gt; &gt;    I just compiled the debugged and optimized versions of petsc-3.1-p7.<br>
&gt; &gt; Both are successful. I am running on Windows Vista 64bit machine.<br>
&gt; &gt; The C/C++ compiler is cl.exe from visual studio 2005 (64 bit) and no FORTRAN<br>
&gt; &gt; compiler is used. BLAS/LAPACK<br>
&gt; &gt; support comes from Intel MKL-10.1.3.028 (under em64t\lib). No MPI is used.<br>
&gt; &gt;<br>
&gt; &gt;   The debugged petsc was configured with:<br>
&gt; &gt;   $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt; &gt; --with-mpi=<br>
&gt; &gt; 0<br>
&gt; &gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_thread.lib,mkl_core.lib<br>
&gt; &gt; ,libiomp5mt.lib] -CFLAGS=&#39;-MDd -W3 -Z7&#39; -CXXFLAGS=&#39;-MDd -W3 -Z7&#39;<br>
&gt; &gt;<br>
&gt; &gt;   The optimized petsc was configured with:<br>
&gt; &gt;   $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39;<br>
&gt; &gt; --with-mpi=<br>
&gt; &gt; 0 --with-debugging=0<br>
&gt; &gt; --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_threa<br>
&gt; &gt; d.lib,mkl_core.lib,libiomp5mt.lib]  -CFLAGS=&#39;-MD -wd4996 -O2&#39; -CXXFLAGS=&#39;-MD<br>
&gt; &gt; -w<br>
&gt; &gt; d4996 -O2&#39;<br>
&gt; &gt;<br>
&gt; &gt;   When I run ksp/examples/tutorials/Ex2.c. The result with debugged petsc<br>
&gt; &gt; is<br>
&gt; &gt; =================================================================<br>
&gt; &gt;   Norm of error 0.000156044 iterations 6<br>
&gt; &gt; =================================================================<br>
&gt; &gt;<br>
&gt; &gt;   However, there are errors with the optimized petsc with the output as<br>
&gt; &gt; follows:<br>
&gt; &gt; =================================================================<br>
&gt; &gt; [0]PETSC ERROR: --------------------- Error Message<br>
&gt; &gt; ----------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: Nonconforming object sizes!<br>
&gt; &gt; [0]PETSC ERROR: Mat mat,Vec y: global dim 56 57!<br>
&gt; &gt; [0]PETSC ERROR:<br>
&gt; &gt; ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: Petsc Release Version 3.1.0, Patch 7, Mon Dec 20 14:26:37<br>
&gt; &gt; CST 20<br>
&gt; &gt; 10<br>
&gt; &gt; [0]PETSC ERROR: See docs/changes/index.html for recent updates.<br>
&gt; &gt; [0]PETSC ERROR: See docs/faq.html for hints about trouble shooting.<br>
&gt; &gt; [0]PETSC ERROR: See docs/index.html for manual pages.<br>
&gt; &gt; [0]PETSC ERROR:<br>
&gt; &gt; ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR:<br>
&gt; &gt; D:\Develop\Test\PETSc\petsc-3.1-p7\src\ksp\ksp\examples\tutorial<br>
&gt; &gt; s\ex2.exe on a cygwin-c- named CVBRL-38 by mengda Mon Jan 17 00:35:15 2011<br>
&gt; &gt; [0]PETSC ERROR: Libraries linked from<br>
&gt; &gt; /cygdrive/d/Develop/Test/PETSc/petsc-3.1-p<br>
&gt; &gt; 7/cygwin-c-opt/lib<br>
&gt; &gt; [0]PETSC ERROR: Configure run at Sun Jan 16 23:34:25 2011<br>
&gt; &gt; [0]PETSC ERROR: Configure options --with-cc=cl --with-fc=0 --with-cxx=cl<br>
&gt; &gt; --with-<br>
&gt; &gt; mpi=0 --with-debugging=0<br>
&gt; &gt; --with-blas-lapack-lib=&quot;[mkl_intel_lp64.lib,mkl_intel_t<br>
&gt; &gt; hread.lib,mkl_core.lib,libiomp5mt.lib]&quot; -CFLAGS=&quot;-MD -wd4996 -O2&quot;<br>
&gt; &gt; -CXXFLAGS=&quot;-MD<br>
&gt; &gt; -wd4996 -O2&quot; --useThreads=0<br>
&gt; &gt; [0]PETSC ERROR:<br>
&gt; &gt; ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: MatMult() line 1888 in<br>
&gt; &gt; src/mat/interface/D:\Develop\Test\PETSc\P<br>
&gt; &gt; ETSC-~1.1-P\src\mat\INTERF~1\matrix.c<br>
&gt; &gt; [0]PETSC ERROR: main() line 146 in<br>
&gt; &gt; src/ksp/ksp/examples/tutorials/D:\Develop\Tes<br>
&gt; &gt; t\PETSc\PETSC-~1.1-P\src\ksp\ksp\examples\TUTORI~1\ex2.c<br>
&gt; &gt;<br>
&gt; &gt; This application has requested the Runtime to terminate it in an unusual<br>
&gt; &gt; way.<br>
&gt; &gt; Please contact the application&#39;s support team for more information.<br>
&gt; &gt; =================================================================<br>
&gt; &gt;<br>
&gt; &gt;   I am wondering what problems may lead to the errors. Please let me know<br>
&gt; &gt; if you need more<br>
&gt; &gt; information.<br>
&gt; &gt;<br>
&gt; &gt; Thanks,<br>
&gt; &gt; Mengda<br>
&gt; &gt;<br>
&gt; &gt; Hi all,<br>
&gt; &gt;<br>
&gt; &gt;     I just compiled the debugged and optimized versions of petsc-3.1-p7. Both are successful. I am running on Windows Vista 64bit machine.<br>
&gt; &gt; The C/C++ compiler is cl.exe from visual studio 2005 (64 bit) and no FORTRAN compiler is used. BLAS/LAPACK<br>
&gt; &gt; support comes from Intel MKL-10.1.3.028 (under em64t\lib). No MPI is used.<br>
&gt; &gt;<br>
&gt; &gt;    The debugged petsc was configured with:<br>
&gt; &gt;    $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39; --with-mpi=<br>
&gt; &gt; 0  --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_thread.lib,mkl_core.lib<br>
&gt; &gt; ,libiomp5mt.lib] -CFLAGS=&#39;-MDd -W3 -Z7&#39; -CXXFLAGS=&#39;-MDd -W3 -Z7&#39;<br>
&gt; &gt;<br>
&gt; &gt;    The optimized petsc was configured with:<br>
&gt; &gt;    $ ./config/configure.py --with-cc=&#39;cl&#39; --with-fc=0  --with-cxx=&#39;cl&#39; --with-mpi=<br>
&gt; &gt; 0 --with-debugging=0 --with-blas-lapack-lib=[mkl_intel_lp64.lib,mkl_intel_threa<br>
&gt; &gt; d.lib,mkl_core.lib,libiomp5mt.lib]  -CFLAGS=&#39;-MD -wd4996 -O2&#39; -CXXFLAGS=&#39;-MD -w<br>
&gt; &gt; d4996 -O2&#39;<br>
&gt; &gt;<br>
&gt; &gt;    When I run ksp/examples/tutorials/Ex2.c. The result with debugged petsc is<br>
&gt; &gt; =================================================================<br>
&gt; &gt;    Norm of error 0.000156044 iterations 6<br>
&gt; &gt; =================================================================<br>
&gt; &gt;<br>
&gt; &gt;    However, there are errors with the optimized petsc with the output as follows:<br>
&gt; &gt; =================================================================<br>
&gt; &gt; [0]PETSC ERROR: --------------------- Error Message ----------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: Nonconforming object sizes!<br>
&gt; &gt; [0]PETSC ERROR: Mat mat,Vec y: global dim 56 57!<br>
&gt; &gt; [0]PETSC ERROR: ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: Petsc Release Version 3.1.0, Patch 7, Mon Dec 20 14:26:37 CST 20<br>
&gt; &gt; 10<br>
&gt; &gt; [0]PETSC ERROR: See docs/changes/index.html for recent updates.<br>
&gt; &gt; [0]PETSC ERROR: See docs/faq.html for hints about trouble shooting.<br>
&gt; &gt; [0]PETSC ERROR: See docs/index.html for manual pages.<br>
&gt; &gt; [0]PETSC ERROR: ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: D:\Develop\Test\PETSc\petsc-3.1-p7\src\ksp\ksp\examples\tutorial<br>
&gt; &gt; s\ex2.exe on a cygwin-c- named CVBRL-38 by mengda Mon Jan 17 00:35:15 2011<br>
&gt; &gt; [0]PETSC ERROR: Libraries linked from /cygdrive/d/Develop/Test/PETSc/petsc-3.1-p<br>
&gt; &gt; 7/cygwin-c-opt/lib<br>
&gt; &gt; [0]PETSC ERROR: Configure run at Sun Jan 16 23:34:25 2011<br>
&gt; &gt; [0]PETSC ERROR: Configure options --with-cc=cl --with-fc=0 --with-cxx=cl --with-<br>
&gt; &gt; mpi=0 --with-debugging=0 --with-blas-lapack-lib=&quot;[mkl_intel_lp64.lib,mkl_intel_t<br>
&gt; &gt; hread.lib,mkl_core.lib,libiomp5mt.lib]&quot; -CFLAGS=&quot;-MD -wd4996 -O2&quot; -CXXFLAGS=&quot;-MD<br>
&gt; &gt;  -wd4996 -O2&quot; --useThreads=0<br>
&gt; &gt; [0]PETSC ERROR: ----------------------------------------------------------------<br>
&gt; &gt; --------<br>
&gt; &gt; [0]PETSC ERROR: MatMult() line 1888 in src/mat/interface/D:\Develop\Test\PETSc\P<br>
&gt; &gt; ETSC-~1.1-P\src\mat\INTERF~1\matrix.c<br>
&gt; &gt; [0]PETSC ERROR: main() line 146 in src/ksp/ksp/examples/tutorials/D:\Develop\Tes<br>
&gt; &gt; t\PETSc\PETSC-~1.1-P\src\ksp\ksp\examples\TUTORI~1\ex2.c<br>
&gt; &gt;<br>
&gt; &gt; This application has requested the Runtime to terminate it in an unusual way.<br>
&gt; &gt; Please contact the application&#39;s support team for more information.<br>
&gt; &gt; =================================================================<br>
&gt; &gt;<br>
&gt; &gt;    I am wondering what problems may lead to the errors. Please let me know if you need more<br>
&gt; &gt; information.<br>
&gt; &gt;<br>
&gt; &gt; Thanks,<br>
&gt; &gt; Mengda<br>
&gt;<br>
&gt;<br>
<br>
</div></div></blockquote></div><br></div>