<div class="gmail_quote">On Mon, May 7, 2012 at 12:15 PM,  <span dir="ltr">&lt;<a href="mailto:coco@dmi.unict.it" target="_blank">coco@dmi.unict.it</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div id=":2gn">I am trying to use a matrix-free method to solve a linear system with Petsc. In particular, I noticed that if I solve the same linear system with the same KSP solver, the same preconditioner, and the same options, I obtain different convergence results if I solve the system with the full- or free-matrix method. Is that plausible?<br>

<br>
Here is a piece of code:<br>
<br>
//Method #1:<br>
ierr=MatCreate(PETSC_COMM_<u></u>WORLD,&amp;M); CHKERRQ(ierr);<br>
ierr=MatSetType(M, MATMPIAIJ); CHKERRQ(ierr);<br>
ierr=MatSetSizes(M,PETSC_<u></u>DECIDE,PETSC_DECIDE,N,M); CHKERRQ(ierr);<br>
[...filling the matrix...]<br>
ierr = KSPCreate(PETSC_COMM_WORLD,&amp;<u></u>ksp);CHKERRQ(ierr);<br>
ierr = KSPSetOperators(ksp,M,M,<u></u>DIFFERENT_NONZERO_PATTERN);<u></u>CHKERRQ(ierr);<br>
ierr = KSPSetTolerances(ksp,1.e-12,<u></u>PETSC_DEFAULT,PETSC_DEFAULT,<u></u>PETSC_DEFAULT);CHKERRQ(ierr);<br>
ierr = KSPSolve(ksp,RHS,U);CHKERRQ(<u></u>ierr);<br>
<br>
//Method #2:<br>
extern PetscErrorCode UserMult(Mat,Vec,Vec);<br>
ierr=MatCreateShell(PETSC_<u></u>COMM_WORLD,N,M,n,M,ctx,&amp;M1); CHKERRQ(ierr);<br>
ierr=MatShellSetOperation(M,<u></u>MATOP_MULT,(void(*)(void)) UserMult); CHKERRQ(ierr);<br>
ierr=MatAssemblyBegin(M,MAT_<u></u>FINAL_ASSEMBLY); CHKERRQ(ierr);<br>
ierr=MatAssemblyEnd(M,MAT_<u></u>FINAL_ASSEMBLY); CHKERRQ(ierr);<br>
ierr = KSPCreate(PETSC_COMM_WORLD,&amp;<u></u>ksp1);CHKERRQ(ierr);<br>
ierr = KSPSetOperators(ksp1,M1,M1,<u></u>DIFFERENT_NONZERO_PATTERN);<u></u>CHKERRQ(ierr);<br>
ierr = KSPSetTolerances(ksp1,1.e-12,<u></u>PETSC_DEFAULT,PETSC_DEFAULT,<u></u>PETSC_DEFAULT);CHKERRQ(ierr);<br>
ierr = KSPSolve(ksp1,RHS,U1);CHKERRQ(<u></u>ierr);<br>
<br>
In particular, the method #1 converges in 15 iterations, while the method #2 in more than 1000.</div></blockquote></div><br><div>What preconditioner?</div><div><br></div><div>How did you determine that the matrix-free method applies the same linear operator?</div>