| #
ed0ed7c6
|
| 19-Sep-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'master' into 'barry/2019-08-22/fix-fblaslapack-for-nag'
# Conflicts: # lib/petsc/conf/test
|
| #
ad30ef87
|
| 06-Sep-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'hzhang/fix-dmnetworklayoutsetup' into 'master'
bugfix for DMNetworkLayoutSetUp()
See merge request petsc/petsc!2006
|
| #
35140aeb
|
| 05-Sep-2019 |
Pierre Jolivet <pierre.jolivet@enseeiht.fr> |
Merge branch 'master' into this one.
|
| #
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
|
| #
ba38b151
|
| 03-Sep-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
bugfix for DMNetworkLayoutSetUp()
|
| #
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
|
| #
f80139e1
|
| 15-Aug-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'jed/deprecate-dmgetdefaultsection' [PR #1969]
* jed/deprecate-dmgetdefaultsection: DMGetDefaultSection et al: add PETSC_DEPRECATED_FUNCTION These functions were deprecated in v3.9, but
Merge branch 'jed/deprecate-dmgetdefaultsection' [PR #1969]
* jed/deprecate-dmgetdefaultsection: 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.
DMGetLocalSection/DMSetLocalSection: add explicit names for DMGetSection/DMSetSection These names are for symmetry with DMGetLocalVector() versus DMGetGlobalVector().
DMGetSection: replace all internal usage with DMGetLocalSection Same for DMSetSection -> DMSetLocalSection. We retain the interface for DMGetSection/DMSetSection without deprecation warnings (for now).
show more ...
|
| #
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 ...
|
| #
30a99da3
|
| 20-Jul-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'hzhang/dmnetwork-vltogordering' [PR #1882]
* hzhang/dmnetwork-vltogordering: add Set/GetVertexLocalToGlobalOrdering(), used by constrained optimization application bugfix for IPMUpdate
Merge branch 'hzhang/dmnetwork-vltogordering' [PR #1882]
* hzhang/dmnetwork-vltogordering: add Set/GetVertexLocalToGlobalOrdering(), used by constrained optimization application bugfix for IPMUpdateAi() in Tao. Create Ai using local column size bugfix for DMInitialize_Network(). contibuted by Shri
show more ...
|
| #
2e4cff2e
|
| 17-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
fix complex build error
|
| #
d351f103
|
| 17-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
rm unnecessary newline
|
| #
b2aacc82
|
| 17-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
fix typo which causes fortran compiling error
|
| #
a8158fb5
|
| 14-Jul-2019 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'gropp/doc-fixes-1' [PR #1838]
|
| #
63029d29
|
| 12-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
fix bug in DMNetworkSetVertexLocalToGlobalOrdering() at ghosted vertices
|
| #
67dd800b
|
| 08-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
fix memory overwritten
|
| #
f5427c60
|
| 08-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
fix memory leak
|
| #
22bbedd7
|
| 08-Jul-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
add Set/GetVertexLocalToGlobalOrdering(), used by constrained optimization application
|
| #
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
|
| #
c56e2027
|
| 26-Jun-2019 |
BarryFSmith <bsmith@mcs.anl.gov> |
Merged in barry/optimize-aij-da (pull request #1762)
Non-numeric optimizations focused on AIJ, MatFDColoring, and DMCreateMatrix_DA_*AIJ, looking to improve performance in GPU environments
|
| #
071fcb05
|
| 05-Jun-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Non-numeric optimizations focused on AIJ, MatFDColoring, and DMCreateMatrix_DA_*AIJ, looking to improve performance in GPU environments
1) PetscCalloc*() now uses system calloc() 2) Merged some Pets
Non-numeric optimizations focused on AIJ, MatFDColoring, and DMCreateMatrix_DA_*AIJ, looking to improve performance in GPU environments
1) PetscCalloc*() now uses system calloc() 2) Merged some PetscMalloc*() 3) Eliminated unneeded PetscCalloc*() 4) Removed some memory allocations and copies in MatFDColoringSetUp(), added local variables for better compiler optimization 5) Added MatSetValues_SeqAIJ_SortedFull(), added MatSetOption(MAT_SORTED_FULL) 6) Optimized DMCreateMatrix_DA_*AIJ for nonperiodic case to automatically have sorted columns (faster MatSetValues() times) 7) Eliminated call to PetscMemzero() in PetscFree()
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
|
| #
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>
|
| #
bef06901
|
| 11-May-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
Merged in hzhang/dmnetwork-add_matpreallocation_err-cleanup (pull request #1649)
Hzhang/dmnetwork add matpreallocation err cleanup
Approved-by: Matthew Knepley <knepley@gmail.com> Approved-by: Shri
Merged in hzhang/dmnetwork-add_matpreallocation_err-cleanup (pull request #1649)
Hzhang/dmnetwork add matpreallocation err cleanup
Approved-by: Matthew Knepley <knepley@gmail.com> Approved-by: Shrirang Abhyankar <shri@pnnl.gov> Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
show more ...
|
| #
16519a10
|
| 09-May-2019 |
Hong Zhang <hzhang@mcs.anl.gov> |
rm MatSetOption(*J,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE) in line 1717 because DMCreateMatrix_Plex() already sets it.
|