<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class=""><br class=""></div>  Marc,<div class=""><br class=""></div><div class="">   I have played around with your matrix using several "direct" solvers; all of them produced residual norms of around 10^-8 except Matlab which produced a residual norm of 10^-5 and a warning that the recond of the matrix was 10^-16</div><div class="">I also solved with the PETSc LU factorization in quad precision and got a residual norm of 10^-26. UMFPACK ran out of memory.</div><div class=""><br class=""></div><div class="">   Attached I plotted the solution (as a 1d vector for all the solvers), as you can see all the answers are very different. Note that the figures are black inside the "envelop" of the solution because intermediate values of the vector are dense (ie. at a very fine scale the solution is oscillating a great deal). Interesting when I ran with MUMPS on 1 and 2 processors using PETSc 3.5p2 (actually the maint branch) I get a solution very near your "old" solution. </div><div class=""><br class=""></div><div class="">  IThe matrix has 8,000 rows of the identity (1 on the diagonal) and the rest with entries of -10^8.  Don't put those trivial rows into the matrix and scale the matrix so it has positive diagonal entires. I've done this and it doesn't help the solver but it is still the right thing to do.</div><div class=""><br class=""></div><div class=""><img height="592" width="947" apple-width="yes" apple-height="yes" apple-inline="yes" id="04D77375-8650-40B6-B40A-F68683B6697C" src="cid:5E43FC47-60C8-4803-AA15-D1375822331D" class=""></div><div class=""><br class=""></div><div class="">   I do not know if the quad precision solution is "accurate" but I am pretty confident that all the other answers are equally valid and equally worthless. How do you know the "old" mumps solution is correct and the new mumps solution wrong?</div><div class=""><br class=""></div><div class="">  Can you try with the maint branch of PETSc and see if you get the solutions you want?</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">  Barry</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""><blockquote type="cite" class="">On Dec 11, 2014, at 4:38 AM, Marc MEDALE <<a href="mailto:marc.medale@univ-amu.fr" class="">marc.medale@univ-amu.fr</a>> wrote:<br class=""><br class="">Dear PETSC Users,<br class=""><br class="">I have just updated to PETSc-3.5 my research code that uses PETSc for a while but I'm facing an astonishing difference between PETSc-3.4 to 3.5 versions when solving a very ill conditioned algebraic system with MUMPS (4.10.0 in both cases).<br class=""><br class="">The only differences that arise in my fortran source code are the following:<br class="">Loma1-medale% diff ../version_3.5/solvEFL_MAN_SBIF.F ../version_3.4/solvEFL_MAN_SBIF.F<br class="">336,337d335<br class=""><       CALL MatSetOption(MATGLOB,MAT_KEEP_NONZERO_PATTERN,<br class=""><      &       PETSC_TRUE,IER)<br class="">749,750c747,748<br class=""><       CALL KSPSetTolerances(KSP1,TOL,PETSC_DEFAULT_REAL,<br class=""><      &     PETSC_DEFAULT_REAL,PETSC_DEFAULT_INTEGER,IER)<br class="">---<br class=""><blockquote type="cite" class="">     CALL KSPSetTolerances(KSP1,TOL,PETSC_DEFAULT_DOUBLE_PRECISION,<br class="">    &     PETSC_DEFAULT_DOUBLE_PRECISION,PETSC_DEFAULT_INTEGER,IER)<br class=""></blockquote>909c907,908<br class=""><           CALL KSPSetOperators(KSP1,MATGLOB,MATGLOB,IER)<br class="">---<br class=""><blockquote type="cite" class="">         CALL KSPSetOperators(KSP1,MATGLOB,MATGLOB,<br class="">    &                         SAME_NONZERO_PATTERN,IER)<br class=""></blockquote><br class="">When I run the corresponding program versions on 128 cores of our cluster with the same input data and the following command line arguments:<br class="">-ksp_type preonly -pc_type lu -pc_factor_mat_solver_package mumps -mat_mumps_icntl_8 0<br class=""><br class="">I get the following outputs:<br class="">a)  with PETSc-3.4p4:<br class=""><span class="Apple-tab-span" style="white-space:pre">   </span>L2 norm of solution vector: 7.39640E-02,<br class=""><br class="">b)  with PETSc-3.5p1:<br class=""><span class="Apple-tab-span" style="white-space:pre">   </span>L2 norm of solution vector: 1.61325E-02<br class=""><br class="">Do I have change something else in updating my code based on KSP from PETSc-3.4 to 3.5 versions?<br class="">Do any default values in the PETSc-MUMPS interface have been changed from PETSc-3.4 to 3.5?<br class="">Any hints or suggestions are welcome to help me to recover the right results (obtained with PETSc-3.4).<br class=""><br class="">Thank you very much.<br class=""><br class="">Marc MEDALE.<br class=""></blockquote><br class=""></div></body></html>