[petsc-dev] make all-legacy broken

2013-01-02 Thread Barry Smith
Satish, make all-legacy does not save the output to the make.log file any more. Please fix. Thanks Barry Note that make all when it reverts to the legacy make does save the output but a run of make all-legacy does not save it anywhere.

[petsc-dev] chevy is messing with me

2013-01-02 Thread Jed Brown
only happens with a non-debug > build. I'm also using 64 bit indices. > > 2) computing eigenvalues even though I set them. > > 3) I would like to tell cheby not to recompute eigenvalues. > > Mark > > > -- next part -- An HTML attachmen

[petsc-dev] SNES for 2x2 problems

2013-01-02 Thread Jed Brown
- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/3e940579/attachment.html>

[petsc-dev] SNES for 2x2 problems

2013-01-02 Thread Matthew Knepley
proach is bogus unless you can prove that your simple thing is sufficient. Matt -- What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead. -- Norbert Wiener -- next part --

[petsc-dev] SNES for 2x2 problems

2013-01-02 Thread Jed Brown
the full algorithmic infrastructure for point location. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/9572e815/attachment.html>

[petsc-dev] SNES for 2x2 problems

2013-01-02 Thread Matthew Knepley
iener -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/52afcc43/attachment.html>

[petsc-dev] SNES for 2x2 problems

2013-01-02 Thread Jed Brown
little Newton loop (not SNES). Maybe this implementation of yours is a reference that you're planning to replace? -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/8107de22/attachment.html>

[petsc-dev] MPI type mismatches

2013-01-02 Thread Jed Brown
>> #else >> ierr = >> MPI_Reduce(xv,xvt,xx_n,MPIU_SCALAR,MPI_SUM,0,((PetscObject)ctx)->comm);CHKERRQ(ierr); >> #endif >> >> > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/b9b17763/attachment.html>

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Matthew Knepley
_STDERR_ ? > Fixed. Matt -- What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead. -- Norbert Wiener -- next part -- An HTML attachment was scrubbed... URL: <ht

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Barry Smith
On Jan 2, 2013, at 11:39 AM, Jed Brown wrote: > On Wed, Jan 2, 2013 at 11:32 AM, Matthew Knepley wrote: > I fixed the simple thing, but the PrintMatSetValues() is problematic. Right > now, it just prints using > PetscPrintf, which is wrong for errors like this, but correct for other > things.

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Jed Brown
DERR_ ? > Actually, that's not great because it always prints the rest of PetscError with PETSC_ERROR_INITIAL. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/939605d7/attachment.html>

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Jed Brown
ts.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/119371e7/attachment.html>

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Matthew Knepley
nts is infinitely more interesting than any results to which their experiments lead. -- Norbert Wiener -- next part -- An HTML attachment was scrubbed... URL: <http://lists.mcs.anl.gov/pipermail/petsc-dev/attachments/20130102/4568cbd1/attachment.html>

[petsc-dev] PetscPrintf() is never suppose to be used to print error messages

2013-01-02 Thread Barry Smith
that is what (*PetscErrorPrintf)() is for. Please fix. Thanks Barry ierr = MatSetValues(A, numIndices, indices, numIndices, indices, values, mode); if (ierr) { PetscMPIIntrank; PetscErrorCode ierr2; ierr2 = MPI_Comm_rank(((PetscObject) A)->comm, &rank);CHKERRQ(ierr2);