| #
205bbb3f
|
| 30-Mar-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'haplav/fix-viewer-file-modes' into 'main'
PetscViewer: Improve handling of file modes.
See merge request petsc/petsc!3760
|
| #
7e4fd573
|
| 23-Mar-2021 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
PetscViewer: Improve handling of file modes.
* add FILE_MODE_UNDEFINED for initial invalid value (internal use only) * distinguish between not yet set and unsupported mode * unify error messages in
PetscViewer: Improve handling of file modes.
* add FILE_MODE_UNDEFINED for initial invalid value (internal use only) * distinguish between not yet set and unsupported mode * unify error messages in PetscViewerFileSetName_XXX * PetscViewerFileSetName_HDF5(): FILE_MODE_UPDATE = FILE_MODE_APPEND * PetscViewerHDF5Open(): improve doc * Deprecate PetscViewerVUSetMode, replace by PetscViewerFileSetMode_VU()
show more ...
|
| #
235129d7
|
| 26-Feb-2021 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'balay/switch-master-to-main' into 'master'
Balay/switch master to main
See merge request petsc/petsc!3619
|
| #
9dddd249
|
| 10-Feb-2021 |
Satish Balay <balay@mcs.anl.gov> |
git: switch default branch from 'master' to 'main'
|
| #
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 ...
|
| #
4751c3ac
|
| 21-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release'
|
| #
fb256184
|
| 21-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2020-12-11/fix-trajectory-memory-usage-native/release' into 'release'
Fix memory leaks in TSTrajectoryCreate_Memory() and possibly bugs
See merge request petsc/petsc!3476
|
| #
5ff7be28
|
| 12-Dec-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Fix memory leaks in TSTrajectoryCreate_Memory() and possibly bugs
1) The binary open did not switch to native vector loads hence each load for vectors with DMDA involved transforms between natural a
Fix memory leaks in TSTrajectoryCreate_Memory() and possibly bugs
1) The binary open did not switch to native vector loads hence each load for vectors with DMDA involved transforms between natural and PETSc ordering, this used large memory allocations. But the binary create for writing the vectors did set the native option hence likely the results for the example ex5adj.c were incorrect in the past
2) add the skipinfo for the binary open in TSTrajectoryCreate_Memory() since they are not needed.
3) when allocating buffer space in PetscViewerBinaryWriteReadAll() do not use the space on rank zero since the buffer is not needed for that.
Reported-by: Anton Glazkov <anton.glazkov@chch.ox.ac.uk> Thanks-to: Hong Zhang <hongzhang@anl.gov> /spend 1h
show more ...
|
| #
ee6dfa67
|
| 03-Dec-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2020-11-10/add-matlab-engine-host' into 'master'
Barry/2020 11 10/add matlab engine host
See merge request petsc/petsc!3443
|
| #
2cb5e1cc
|
| 11-Nov-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Add better error handling for PETSC_VIEWER_XXX_(), results in clearer error messages
Commit-type: error-checking /spend 30m
|
| #
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
|
| #
16924cb1
|
| 26-Aug-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2020-08-16/fix-source-formatting' into 'master'
Turn on checkbadSource test to generate an error when found; fix all source code that causes errors
See merge request petsc/petsc
Merge branch 'barry/2020-08-16/fix-source-formatting' into 'master'
Turn on checkbadSource test to generate an error when found; fix all source code that causes errors
See merge request petsc/petsc!3064
show more ...
|
| #
2da392cc
|
| 17-Aug-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Turn on checkbadSource test to generate an error when found; fix all source code that causes errors
Commit-type: portability-fix, testing-fix, style-fix, feature, maintainability /spend 1.5h
|
| #
7a32ffbe
|
| 14-Jun-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/barry/2020-05-30/trivial-sizeof-fixes'
Updated the use of sizeof() when possible instead of using hardwired sizes for...
See merge request petsc/petsc!2827
|
| #
589a23ca
|
| 02-Jun-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Updated the use of sizeof() when possible instead of using hardwired sizes for functions whose string arguments need sizes. In particular done for PetscOptionsGetString(), PetscOptionsString(), and a
Updated the use of sizeof() when possible instead of using hardwired sizes for functions whose string arguments need sizes. In particular done for PetscOptionsGetString(), PetscOptionsString(), and a few other utilities
Commit-type: style-fix
Development Tools: Vim, Emacs, Eclipse
show more ...
|
| #
d9ef940e
|
| 15-May-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/maint'
|
| #
9a0d985a
|
| 15-May-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'psanan/petscbinaryviewer-manpage-typos/maint' into 'maint'
PetscViewerBinary man pages: fix PetscBinaryViewer typo in .seealso links
See merge request petsc/petsc!2792
|
| #
d23dbae5
|
| 14-May-2020 |
Patrick Sanan <patrick.sanan@gmail.com> |
PetscViewerBinary man pages: fix PetscBinaryViewer typo in .seealso links
|
| #
86581237
|
| 22-Apr-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/maint'
|
| #
84516c07
|
| 22-Apr-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/fix-wrong-semicolons' into 'maint'
Fix wrong semicolons
See merge request petsc/petsc!2732
|
| #
d21b9a37
|
| 21-Apr-2020 |
Pierre Jolivet <pierre.jolivet@enseeiht.fr> |
Fix wrong semicolons
|
| #
ecdf31b6
|
| 21-Mar-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'dalcinl/binary-io' into 'master'
Binary-IO: Various fixes and enhancements
See merge request petsc/petsc!2605
|