| #
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 ...
|
| #
05393080
|
| 25-Jul-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'jczhang/sf-more-opts' [PR #1567]
* jczhang/sf-more-opts: Add more optimizations in SF and use it as the default for VecScatter.
|
| #
dec1416f
|
| 18-Jun-2019 |
Junchao Zhang <jczhang@mcs.anl.gov> |
Deprecate PetscSFGetRanks with new PetscSFGetRootRanks
Since we have PetscSFGetLeafRanks, it is better to have a similar name.
|
| #
a8158fb5
|
| 14-Jul-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'gropp/doc-fixes-1' [PR #1838]
|
| #
dfb7f63b
|
| 09-Jul-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'barry/feature-boundedint'
|
| #
94aad3ce
|
| 07-Jul-2019 |
Lisandro Dalcin <dalcinl@gmail.com> |
Merged in dalcinl/dm-api (pull request #1850)
DM interface
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
|
| #
97779f9a
|
| 05-Jul-2019 |
Lisandro Dalcin <dalcinl@gmail.com> |
DM: Deprecate DMCreateAggregates()
* This interface is untested and may be redundant * DMDA is the only provider, keep it as DMDACreateAggregates()
|
| #
5a84ad33
|
| 05-Jul-2019 |
Lisandro Dalcin <dalcinl@gmail.com> |
DM: Simplify implementation of DMHasCreateInjection()
* Add log event for DMCreateInjection() * Get rid of DMHasCreateInjection_Default() * Rename dm->ops->getinjection to dm->ops->createinjection *
DM: Simplify implementation of DMHasCreateInjection()
* Add log event for DMCreateInjection() * Get rid of DMHasCreateInjection_Default() * Rename dm->ops->getinjection to dm->ops->createinjection * Improve error checking here and there
show more ...
|
| #
57a5760d
|
| 02-Jul-2019 |
William Gropp <wgropp@illinois.edu> |
Merge from doc-fixes branch
|
| #
a2b725a8
|
| 27-Jun-2019 |
William Gropp <wgropp@illinois.edu> |
Fixes for doctext update
|
| #
5a856986
|
| 21-Jun-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Added PetscOptionsBoundInt(), error if value below bound, and PetscOptionsRangeInt(), error if out of range
Replaced a small amount of the usage in the source code. Easy, slightly boring process to
Added PetscOptionsBoundInt(), error if value below bound, and PetscOptionsRangeInt(), error if out of range
Replaced a small amount of the usage in the source code. Easy, slightly boring process to replace the rest
Commit-type: error checking
show more ...
|
| #
89583661
|
| 21-Jun-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/barry/add-petscarrayxxx-ops' [PR #1771]
|
| #
580bdb30
|
| 07-Jun-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms
Replace a couple multi-mallocs with a single malloc Replace backwards loops in MatSetValues_*()
Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms
Replace a couple multi-mallocs with a single malloc Replace backwards loops in MatSetValues_*() with PetscArraymove()
Commit-type: style-fix, feature
show more ...
|
| #
613bfe33
|
| 02-Jun-2019 |
BarryFSmith <bsmith@mcs.anl.gov> |
Merged in barry/update-collective-on (pull request #1744)
Update the use of Collective on in the manual pages to reflect the new style
|
| #
641a501f
|
| 02-Jun-2019 |
Matthew Knepley <knepley@gmail.com> |
Merged in knepley/feature-dualspace-bdm (pull request #1699)
Knepley/feature dualspace bdm
|
| #
d083f849
|
| 01-Jun-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Update the use of Collective on in the manual pages to reflect the new style
Commit-type: style-fix, documentation Thanks-to: Patrick Sanan <patrick.sanan@gmail.com>
|
| #
fa54792a
|
| 29-May-2019 |
Patrick Sanan <patrick.sanan@gmail.com> |
Merged in psanan/man-pages-remove-keywords (pull request #1717)
Man pages: Remove .keywords fields
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
|
| #
bfcb38ea
|
| 27-May-2019 |
Patrick Sanan <patrick.sanan@gmail.com> |
Man pages: remove .keywords: fields
This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20), but it doesn't seem to be unif
Man pages: remove .keywords: fields
This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20), but it doesn't seem to be uniformly used or maintained.
Thus, remove all .keywords: fields, and a following blank line, if present.
This is accomplished with GNU sed (gsed on OS X), with the following commands. *Warning* that this type of command can corrupt a .git directory, so be cautious in reusing or modifying these commands. They first look for and delete matching lines with a following line consisting of only whitespace, and then delete any remaining matching lines.
find src/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} + find src/ -type f -exec gsed -i '/keywords:/d' {} + find include/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} + find include/ -type f -exec gsed -i '/keywords:/d' {} +
Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed
show more ...
|
| #
18459d1b
|
| 12-May-2019 |
Matthew G. Knepley <knepley@gmail.com> |
Plex: For reference cell, use interpolated DM for coordinates
|
| #
5065da2f
|
| 13-May-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'master' of bitbucket.org:petsc/petsc
|
| #
6898491c
|
| 12-May-2019 |
Václav Hapla <vaclav.hapla@erdw.ethz.ch> |
Merged in haplav/fix-redundant-dmplexcreatefromcelllist-fortran-stub (pull request #1657)
DMPlexCreateFromCellList doesn't need custom fortran stub.
|
| #
c3edce3d
|
| 12-May-2019 |
Satish Balay <balay@mcs.anl.gov> |
generate fortran stub for DMPlexCreateFromCellListParallel
|
| #
e9f6f303
|
| 06-May-2019 |
Vaclav Hapla <vaclav.hapla@erdw.ethz.ch> |
DMPlexCreateFromCellList doesn't need custom fortran stub.
Thus ftn-custom/zplex.c doesn't need to exist.
|
| #
0244ff82
|
| 09-May-2019 |
Matthew Knepley <knepley@gmail.com> |
Merged in knepley/plex-refiner-transform (pull request #1633)
Knepley/plex refiner transform
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
|
| #
bdb1ab76
|
| 04-Apr-2019 |
Václav Hapla <vaclav.hapla@erdw.ethz.ch> |
Merged in haplav/fix-dmplexcheckskeleton (pull request #1503)
DMPlexCheck{Skeleton,Faces}: remove simplex arg; fix for undistributed meshes
Approved-by: Matthew Knepley <knepley@gmail.com> Approved
Merged in haplav/fix-dmplexcheckskeleton (pull request #1503)
DMPlexCheck{Skeleton,Faces}: remove simplex arg; fix for undistributed meshes
Approved-by: Matthew Knepley <knepley@gmail.com> Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
show more ...
|