| #
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 ...
|
| #
5f80ce2a
|
| 24-Feb-2022 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
chkerr and friends wrapped
|
| #
12bafbd6
|
| 09-Aug-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'hongzh/add-acms-support' into 'main'
Add support for CAMS
See merge request petsc/petsc!4111
|
| #
533251d3
|
| 03-Jul-2021 |
Hong Zhang <hongzhang@anl.gov> |
Add option -ts_trajectory_memory_type
- Add dev changes - TSTrajectoryMemory: further savings for stiffly accurate schemes - TSTrajectoryMemory: namespace private functions - TSTrajectoryBasic: when
Add option -ts_trajectory_memory_type
- Add dev changes - TSTrajectoryMemory: further savings for stiffly accurate schemes - TSTrajectoryMemory: namespace private functions - TSTrajectoryBasic: when the solution is the same as the last stage, no need to save both of them to disk.
Commit-type: feature /spend 4h
show more ...
|
| #
60f0b76e
|
| 28-Apr-2021 |
Hong Zhang <hongzhang@anl.gov> |
Add matrix-free example for ex5adj and clean up ex5 examples
- Delete duplicative code for the ease of maintenance. - Update output for the examples
|