| bffeeee2 | 10-Nov-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
Merge branch 'maint'
* maint: bugfix of MatCreateSeqAIJFromTriple() contributed by Nicolas Marsic <nicolas.marsic@montefiore.ulg.ac.be> |
| 58c26cb0 | 05-Nov-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Mat: Cast to remove warning |
| 9d80f4af | 05-Nov-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Mat: Fix MatZeroRows_MPIAIJ() - Must initialize local rows with -1 instead of 0 |
| a46ff776 | 05-Nov-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
MatZeroRows_MPIAIJ: add missing PetscSFReduceEnd
Reported-by: Stefano Zampini <s.zampini@cineca.it> |
| c8d679eb | 05-Nov-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
bugfix of MatCreateSeqAIJFromTriple() contributed by Nicolas Marsic <nicolas.marsic@montefiore.ulg.ac.be> |
| d548240e | 01-Nov-2013 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'prbrune/mat-matcolor' into barry/saws
Conflicts: src/docs/website/documentation/changes/dev.html |
| 1b1dd7ad | 01-Nov-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Mat: Rewrote MPIAIJ MatZeroRows() to use PetscSF - Passes test ex12 |
| a76eec0e | 25-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
Merge branch 'hzhang/snes-jacobiancoloropt' |
| 6346027a | 21-Oct-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
MatFD: remove trailing whitespace introduced in branch |
| 1919a2e2 | 21-Oct-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
Merge branch 'madams/mat-residual' into hzhang/snes-jacobiancoloropt
Fix conflict between new MATOP_RESIDUAL and MATOP_FDCOLORING_SETUP.
* madams/mat-residual: refactored residuals by adding a 'r
Merge branch 'madams/mat-residual' into hzhang/snes-jacobiancoloropt
Fix conflict between new MATOP_RESIDUAL and MATOP_FDCOLORING_SETUP.
* madams/mat-residual: refactored residuals by adding a 'residual' method to Mat
Conflicts: include/finclude/petscmat.h include/petsc-private/matimpl.h include/petscmat.h src/mat/impls/aij/mpi/mpiaij.c src/mat/impls/aij/seq/aij.c src/mat/impls/baij/mpi/mpibaij.c src/mat/impls/baij/seq/baij.c
show more ...
|
| f81e689c | 21-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
rm #if defined(PETSC_USE_INFO) as Jed commented. |
| 337cfc07 | 21-Oct-2013 |
Karl Rupp <rupp@iue.tuwien.ac.at> |
Merge branch 'karlrupp/fix-viennacl-warnings'
* karlrupp/fix-viennacl-warnings: Fixes unused variable and function warnings for ViennaCL bindings. |
| 3a5eb047 | 19-Oct-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
Merge branch 'rlacroix/mpibaij-matgetcolumnnorms'
* rlacroix/mpibaij-matgetcolumnnorms: Extend and enable the test for MatGetColumnNorms. Add MatGetColumnNorms for MPIBAIJ matrices. Add MatGet
Merge branch 'rlacroix/mpibaij-matgetcolumnnorms'
* rlacroix/mpibaij-matgetcolumnnorms: Extend and enable the test for MatGetColumnNorms. Add MatGetColumnNorms for MPIBAIJ matrices. Add MatGetColumnNorms for MPIBAIJ matrices. MatGetColumnNorms_MPIAIJ: Use PetscObjectComm to access the communicator.
Clean merge except for fixing trailing whitespace in test.
show more ...
|
| 1fc5b511 | 18-Oct-2013 |
Karl Rupp <rupp@iue.tuwien.ac.at> |
ViennaCL: Fixed unused variable and function warnings.
This was mostly due to a poor handling of option parsing. The two old functions ViennaCLSetFromOptions VecSetFromOptions_SeqViennaCL were ref
ViennaCL: Fixed unused variable and function warnings.
This was mostly due to a poor handling of option parsing. The two old functions ViennaCLSetFromOptions VecSetFromOptions_SeqViennaCL were refactored: - VecSetFromOptions_SeqViennaCL was completely removed, as it only forwarded. - ViennaCLSetFromOptions was renamed to PetscObjectSetFromOptions_ViennaCL for better accordance with the PETSc naming scheme (thanks to Jed for pointing this out) The options are now checked right before the respective objects are instantiated, thus delaying the OpenCL setup as long as possible.
show more ...
|
| 29a5cbdc | 10-Oct-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Compiler: Fix warnings from MPI impls which do not initialize outputs
(cherry picked from commit d892089bd4a83d5450f25ac15dd2b0a661537089) |
| 7aaeff0a | 15-Oct-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Compiler: Fix warnings |
| 0df34763 | 15-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
add matentry2 for htype='wp'; cleanup |
| 054951ad | 15-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
optimize MatFDColoringSetUpBlocked_AIJ_Private(): replace 'nis+1' with 'bcols+1' for the array length of color_start |
| 195687c5 | 14-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
cleanup: mv creation of vscale from xxxApply() to xxxSetUp() |
| b3e1f37b | 11-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
cleanup |
| a8971b87 | 10-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
factor MatFDColoringSetUpBlocked_AIJ_Private() for both seqaij and mpiaij matrices; blocked impl works for mpiaij now |
| 531e53bd | 10-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
cleanup MatFDColoringCreate_SeqXAIJ(); start implementing brows/bcols for mpiaij matrix - not working yet! |
| d892089b | 10-Oct-2013 |
Matthew G. Knepley <knepley@gmail.com> |
Compiler: Fix warnings from MPI impls which do not initialize outputs |
| c8a9c622 | 10-Oct-2013 |
Hong Zhang <hzhang@mcs.anl.gov> |
cleanup MatFDColoringSetUp routines |
| 16407d4f | 09-Oct-2013 |
Peter Brune <brune@mcs.anl.gov> |
Merge branch 'master' into prbrune/mat-matcolor
Conflicts: src/snes/interface/snesj2.c |