| a7e7f368 | 06-Sep-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/typos' into 'master'
Some typos.
See merge request petsc/petsc!2010 |
| 6aa51ba9 | 05-Sep-2019 |
Jacob Faibussowitsch <jacob.fai@gmail.com> |
fixed spelling error in plex.c |
| 8966356d | 05-Sep-2019 |
Pierre Jolivet <pierre.jolivet@enseeiht.fr> |
Some typos. |
| aaa38285 | 05-Sep-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2019-09-01/rm-default-language-from-dm' into 'master'
Update public API, and internal naming conventions for DM to eliminate use of...
See merge request petsc/petsc!1998 |
| 1bb6d2a8 | 01-Sep-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Update public API, and internal naming conventions for DM to eliminate use of "default" (previously refered to default sections)
Commit-type: style-fix, documentation |
| 6e85cc03 | 29-Aug-2019 |
Jed Brown <jed@jedbrown.org> |
plex tests/ex36: fix FV cell geometry for complex
Four real values are packed into two complex, so we can't access it as the real parts of four complex values. Use PetscFVCellGeom for clarity.
Com
plex tests/ex36: fix FV cell geometry for complex
Four real values are packed into two complex, so we can't access it as the real parts of four complex values. Use PetscFVCellGeom for clarity.
Commit-type: bug-fix Reported-by: Barry Smith <bsmith@mcs.anl.gov>
show more ...
|
| 66d06f27 | 18-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'haplav/fix-hdf5-include' [PR #1967]
* haplav/fix-hdf5-include: redo Pull Request #1943 in master This is intended to unify master with maint after Pull Request #1943 to avoid confusion
Merge branch 'haplav/fix-hdf5-include' [PR #1967]
* haplav/fix-hdf5-include: redo Pull Request #1943 in master This is intended to unify master with maint after Pull Request #1943 to avoid confusions.
show more ...
|
| a1da0019 | 18-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'stefano_zampini/fix-plex-matis-bs' [PR #1971]
* stefano_zampini/fix-plex-matis-bs: Fix MATIS construction for DMPLEX when bs > 1 |
| 6fd5c86a | 15-Aug-2019 |
Stefano Zampini <stefano.zampini@gmail.com> |
DMPLEX: fix bug for bs > 1 introduced in 4fa2624631c |
| 4c500f23 | 15-Aug-2019 |
Pierre Jolivet <pierre.jolivet@enseeiht.fr> |
Typos. |
| 92fd8e1e | 14-Aug-2019 |
Jed Brown <jed@jedbrown.org> |
DMGetSection: replace all internal usage with DMGetLocalSection
Same for DMSetSection -> DMSetLocalSection. We retain the interface for DMGetSection/DMSetSection without deprecation warnings (for n
DMGetSection: replace all internal usage with DMGetLocalSection
Same for DMSetSection -> DMSetLocalSection. We retain the interface for DMGetSection/DMSetSection without deprecation warnings (for now).
Suggested-by: Barry Smith <bsmith@mcs.anl.gov>
show more ...
|
| 6f0eb057 | 14-Aug-2019 |
Jed Brown <jed@jedbrown.org> |
DMGetDefaultSection et al: add PETSC_DEPRECATED_FUNCTION
These functions were deprecated in v3.9, but no PETSC_DEPRECATED_FUNCTION was added at that time so many uses crept back into the source code
DMGetDefaultSection et al: add PETSC_DEPRECATED_FUNCTION
These functions were deprecated in v3.9, but no PETSC_DEPRECATED_FUNCTION was added at that time so many uses crept back into the source code. Here we mark it deprecated and fix all existing uses in PETSc.
show more ...
|
| 1ac5c604 | 13-Aug-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merged in balay/updated-med-4.0.0/master (pull request #1662)
Balay/updated med 4.0.0/master
Approved-by: BarryFSmith <bsmith@mcs.anl.gov> |
| 20e823e8 | 04-Aug-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Move higher level (IS level) hdf5 function prototypes to new file petsclayouthdf5.h
This is a fix for PETSc v3.11.3 which cannot compile code that does not include the -I search path for HDF5 even t
Move higher level (IS level) hdf5 function prototypes to new file petsclayouthdf5.h
This is a fix for PETSc v3.11.3 which cannot compile code that does not include the -I search path for HDF5 even though the code do not use HDF5 since the #if defined(PETSC_HAVE_HDF5) #include <H5Ipublic.h> is directly in petscis.h
This prevents polluting the public IS level include files with HDF5 material
This hopefully can be ported directly also to the master branch and cleanup the pollution there as well.
Note that the code in question does not use IS but does use PetscLayout hence the name of the new include file
Commit-type: bug-fix, portability-fix Reported-by: Drew Parson Thanks-to: Lisandro Dalcin <dalcinl@gmail.com> (cherry picked from commit 51e210a943a96e6acf92eea785f1e143d67148d9)
show more ...
|
| 03c1f56a | 12-Aug-2019 |
Satish Balay <balay@mcs.anl.gov> |
MED: temporarily disable failing tests |
| 1a1700d6 | 11-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'barry/2019-08-04/fix-maint-hdf5-include/maint' into maint [PR #1943]
* barry/2019-08-04/fix-maint-hdf5-include/maint: Move higher level (IS level) hdf5 function prototypes to new file
Merge branch 'barry/2019-08-04/fix-maint-hdf5-include/maint' into maint [PR #1943]
* barry/2019-08-04/fix-maint-hdf5-include/maint: Move higher level (IS level) hdf5 function prototypes to new file petsclayouthdf5.h This is a fix for PETSc v3.11.3 which cannot compile code that does not include the -I search path for HDF5 even though the code do not use HDF5 since the #if defined(PETSC_HAVE_HDF5) #include <H5Ipublic.h> is directly in petscis.h This prevents polluting the public IS level include files with HDF5 material
show more ...
|
| 848fb877 | 10-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'haplav/fix-petscviewerhdf5pushgroup-empty-string' [PR #1950]
* haplav/fix-petscviewerhdf5pushgroup-empty-string: fix/generalize PetscViewerHDF5PushGroup for empty string
- add dm_impl
Merge branch 'haplav/fix-petscviewerhdf5pushgroup-empty-string' [PR #1950]
* haplav/fix-petscviewerhdf5pushgroup-empty-string: fix/generalize PetscViewerHDF5PushGroup for empty string
- add dm_impls_plex_{tests-ex18_9%,tutorials-ex5_9%} loading an HDF5/XDMF file with custom naming - PetscViewerHDF5{Push,Get}Group: *name -> name[] to unify with the rest of header file - PetscViewerHDF5PushGroup: Allow to push NULL, "", or all slashes.
In all cases, store NULL, interpret as "/". This also fixes the problem in DMPlexLoad_HDF5_Xdmf_Internal() when the specified datasets locations are in / (like e.g. -dm_plex_hdf5_topology_path /cells in the new examples).
show more ...
|
| 6f9df684 | 08-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'jczhang/fix-unused-variable' [PR #1955]
* jczhang/fix-unused-variable: Remove an unused variable |
| 7fc084c7 | 07-Aug-2019 |
Junchao Zhang <jczhang@mcs.anl.gov> |
Remove an unused variable |
| a731009a | 07-Aug-2019 |
Jed Brown <jed@jedbrown.org> |
examples: use DMBoundaryTypes instead of manually replicating it |
| 1e5b7ddd | 05-Aug-2019 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
add dm_impls_plex_{tests-ex18_9%,tutorials-ex5_9%} loading an HDF5/XDMF file with custom naming |
| 51e210a9 | 04-Aug-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Move higher level (IS level) hdf5 function prototypes to new file petsclayouthdf5.h
This is a fix for PETSc v3.11.3 which cannot compile code that does not include the -I search path for HDF5 even t
Move higher level (IS level) hdf5 function prototypes to new file petsclayouthdf5.h
This is a fix for PETSc v3.11.3 which cannot compile code that does not include the -I search path for HDF5 even though the code do not use HDF5 since the #if defined(PETSC_HAVE_HDF5) #include <H5Ipublic.h> is directly in petscis.h
This prevents polluting the public IS level include files with HDF5 material
This hopefully can be ported directly also to the master branch and cleanup the pollution there as well.
Note that the code in question does not use IS but does use PetscLayout hence the name of the new include file
Commit-type: bug-fix, portability-fix Reported-by: Drew Parson Thanks-to: Lisandro Dalcin <dalcinl@gmail.com>
show more ...
|
| c4886598 | 02-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
ex18: Fixed incorrect merge from maint in parent commit. [PR #1921]
Merge should have used theirs-strategy instead of ours-strategy. |
| 07d8e358 | 31-Jul-2019 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
ex18: 7_exo_metis made temporarily TODO |
| 32921780 | 31-Jul-2019 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
ex18: 7_hdf5_repart_ppu made TODO.
Parallel partitioning of uninterpolated meshes not supported. |