| #
a8cf78f8
|
| 24-May-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2021-05-16/fix-double-lines' into 'main'
Fix typos in source
See merge request petsc/petsc!3984
|
| #
4e278199
|
| 16-May-2021 |
Barry Smith <bsmith@mcs.anl.gov> |
Remove all double blank lines from source
Commit-type: petsc-style /2h
|
| #
7ab9467e
|
| 02-Mar-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jczhang/sf-change-api' into 'main'
Change some SF APIs mentioned in the ECP paper
See merge request petsc/petsc!3659
|
| #
83df288d
|
| 27-Feb-2021 |
Junchao Zhang <jczhang@mcs.anl.gov> |
Replace MPIU_REPLACE with MPI_REPLACE
Since we believe all MPI implementations support MPI_REPLACE
|
| #
9f90f53a
|
| 04-Jan-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/gamg-gpu-setup' into 'master'
MatMat operations with CUSPARSE
See merge request petsc/petsc!3391
|
| #
cec0a6c6
|
| 19-Nov-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatAIJMKL: enable parallel PtaP
Wondering if it ever worked?
|
| #
4e84afc0
|
| 19-Nov-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatMPIAIJ: move generic code for MatMat product to base class
|
| #
bdea225a
|
| 30-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2020-10-08/fix-mpi-error-codes' into 'master'
Convert MPI error type to PETSc error with string message for all MPI calls
See merge request petsc/petsc!3326
|
| #
ffc4695b
|
| 08-Oct-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Convert MPI error type to PETSc error with string message for all MPI calls
Now PETSc examples will ONLY return PETSc error codes and never MPI error codes directly so we can understand and post-pro
Convert MPI error type to PETSc error with string message for all MPI calls
Now PETSc examples will ONLY return PETSc error codes and never MPI error codes directly so we can understand and post-process their errors better.
The test harness will now automatically retry tests that fail with MPI, this may help with Intel MPI that produces seemingly random failures.
Commit-type: error-checking /spend 30m
show more ...
|
| #
bfc8fd11
|
| 24-Nov-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release' into master
|
| #
54f467a8
|
| 23-Nov-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jose/release/pgi-20.9-warnings' into 'release'
Fix warnings in NVIDIA compilers (formerly PGI)
See merge request petsc/petsc!3397
|
| #
ec4bef21
|
| 05-Nov-2020 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix warnings in NVIDIA compilers (formerly PGI): variable was never used
|
| #
45830182
|
| 04-Jul-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/maint'
|
| #
5a14a7c0
|
| 04-Jul-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'rmills/fix-matptapnumeric-mpiaij-objectstate/maint' into 'maint'
Bug fix: MatPtAPNumeric_MPIAIJ_MPIAIJ() must increase ObjectState of AP_loc.
See merge request petsc/petsc!2943
|
| #
976452c9
|
| 07-Jun-2020 |
Richard Tran Mills <rmills@rmills.org> |
Bug fix: MatPtAPNumeric_MPIAIJ_MPIAIJ() must increase ObjectState of AP_loc.
|
| #
833b33c1
|
| 29-May-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/feature-add-hpackages-rebased' into 'master'
Fixes to MatProduct + many bug fixes + new hierarchical matrix support
See merge request petsc/petsc!2800
|
| #
6718818e
|
| 17-May-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatProduct: proper cleanup of additional data structure
Do not mess with view/destroy routine, add an extra slot to MatProduct struct to stash the data, destroy/view routines Deprecate MatFreeInterm
MatProduct: proper cleanup of additional data structure
Do not mess with view/destroy routine, add an extra slot to MatProduct struct to stash the data, destroy/view routines Deprecate MatFreeIntermediateStructures in favor of MatProductClear Clean up base headers for matrix classes Update tests (remove some todos from ex70 because now the tests work properly) MatProductSetType should not set the setfromoptions operation! MatProductClear should reset operations Remove no longer needed function composition Add few more PetscInfo messages Single dispatch routine MatProductSetFromOptions routines are now allowed to fail MatProductSetFromOptions_SeqXBAIJ_SeqDense: support for MATPRODUCT_AtB MatTransposeMatMultNumeric_SeqAIJ_SeqDense: fix bug with leading dimensions Make internal functions PETSC_INTERN Fix a couple of places where the destroy routine of the matrix was changed Products should all use internal data (or composed data attached to the internal data) Fix few bugs in MPIAIJ_MPIDENSE product with stages
show more ...
|
| #
5b8888ca
|
| 21-Mar-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/hzhng/matproduct-api'
|
| #
4222ddf1
|
| 13-Jan-2020 |
Hong Zhang <hzhang@mcs.anl.gov> |
This branch reorganizes the API of mat-mat operations: A*B, At*B, A*Bt, PtAP, RARt, A*B*C - See matproduct.c for detailed description of new API - removed API function XXXSymbolic() and XXXNumeric()
This branch reorganizes the API of mat-mat operations: A*B, At*B, A*Bt, PtAP, RARt, A*B*C - See matproduct.c for detailed description of new API - removed API function XXXSymbolic() and XXXNumeric() - removed subroutines MatMatMult_xxx, MatPtAP_xxx, ... - modified MatxxxSymbolic_XXX() prototype (product is an input now) - selection of algorithm is in MatProductSetFromOptions_xxx()
show more ...
|
| #
dd5e518f
|
| 11-Nov-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/maint'
|
| #
dc5d50e6
|
| 09-Nov-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'wence/fix/valgrind-warnings' into 'maint'
Fix some of the valgrind memory leaks
See merge request petsc/petsc!2286
|
| #
d4e5d74d
|
| 08-Nov-2019 |
Lawrence Mitchell <lawrence@wence.uk> |
Mat: Free hash-table in PtAP
|
| #
1e69453d
|
| 28-Oct-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/fix-petscint-petscmpiint' into 'master'
Replace PetscInt with PetscMPIInt when returning a rank
See merge request petsc/petsc!2222
|
| #
131c27b5
|
| 28-Oct-2019 |
prj- <pierre.jolivet@enseeiht.fr> |
Replace PetscInt with PetscMPIInt when returning a rank
|
| #
cdb13fbd
|
| 08-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'Fande-Kong/feature-maij-hmg' [PR #1933]
* Fande-Kong/feature-maij-hmg: Using MatMAIJ to store interpolations in PCHMG (1) Rewrote MatGetBrowsOfAcols_MPIXAIJ to extract the remote part
Merge branch 'Fande-Kong/feature-maij-hmg' [PR #1933]
* Fande-Kong/feature-maij-hmg: Using MatMAIJ to store interpolations in PCHMG (1) Rewrote MatGetBrowsOfAcols_MPIXAIJ to extract the remote part of interpolations (2) Refactored MatPtAP__allatonce and MatPtAPXXX__allatonce_merged to take care of MatMAIJ (3) Added MatMAIJ support to PCHMG
show more ...
|