| #
de5d30bf
|
| 16-Jun-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/mathypre' into 'main'
cleanup mathypre
See merge request petsc/petsc!6528
|
| #
651b1cf9
|
| 31-May-2023 |
Stefano Zampini <stefano.zampini@gmail.com> |
Mat tests: add HYPRE COO tests
support COO with hacking permutation array of AIJ
|
| #
04346f8c
|
| 09-Aug-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-07-20/add-clang-format' into 'main'
Use clang-format to format PETSc source code
See merge request petsc/petsc!5455
|
| #
16406dc7
|
| 28-Jul-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
remove printing line numbers form example so output does not change with source code formatting
|
| #
5cab5458
|
| 26-Jul-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-07-23/add-petscbeginuser' into 'main'
Add PetscFunctionBeginUser to all PETSc C/C++ examples
See merge request petsc/petsc!5470
|
| #
327415f7
|
| 23-Jul-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Add PetscFunctionBeginUser to all PETSc C/C++ examples
Now the stack frames will contain the main program and the correct line numbers in them
git ls-files | egrep "(tutorials|tests)" | xargs sed -
Add PetscFunctionBeginUser to all PETSc C/C++ examples
Now the stack frames will contain the main program and the correct line numbers in them
git ls-files | egrep "(tutorials|tests)" | xargs sed -i "s?\(PetscCall(PetscInitialize(&argc\)?PetscFunctionBeginUser;\n \1?g"
Commit-type: error-checking, testing-fix /spend 15m
show more ...
|
| #
f882803c
|
| 26-Mar-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2022-02-23/variadic-chkerr' into 'main'
Variadic CHKERRQ()
See merge request petsc/petsc!4889
|
| #
b122ec5a
|
| 24-Mar-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
PetscInitialize() and PetscFinalize() wrapped:
- ierr = PetscInitialize();if (ierr) return ierr; + CHKERRQ(PetscInitialize());
- ierr = PetscFinalize(); - return ierr; + CHKERRQ(PetscFinalize()); +
PetscInitialize() and PetscFinalize() wrapped:
- ierr = PetscInitialize();if (ierr) return ierr; + CHKERRQ(PetscInitialize());
- ierr = PetscFinalize(); - return ierr; + CHKERRQ(PetscFinalize()); + return 0;
show more ...
|
| #
6584f52a
|
| 11-Mar-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/matis-negative-indices' into 'main'
matis negative indices
See merge request petsc/petsc!4923
|
| #
cbc6b225
|
| 10-Mar-2022 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatSetPreallocationCOO: avoid MatHeaderMerge
|
| #
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
|
| #
e61fc153
|
| 11-Nov-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
MatSetValuesCOO: perform addition of repeated entries when INSERT_VALUES is specified
use temporary data instead of persistent storage in cusparse implementation
|
| #
4e47ed04
|
| 18-Oct-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
Mat ex123: test COO preallocation routines
|