History log of /petsc/src/dm/interface/dmi.c (Results 76 – 100 of 283)
Revision Date Author Comments
# 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 ...


# 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 ...


# 6ceea81e 02-Jun-2019 Matthew Knepley <knepley@gmail.com>

Merged in knepley/fix-subdm-multiple-ds (pull request #1701)

Knepley/fix subdm multiple ds


# 3268a0aa 23-May-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Fix bug with out of range access


# 74a61aaa 27-Apr-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Translate for fields to field indices in CreateSubDM()


# 09730fe9 18-Apr-2019 Matthew Knepley <knepley@gmail.com>

Merged in knepley/feature-plex-subds (pull request #1554)

Knepley/feature plex subds

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# e21d936a 17-Apr-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Fixed selecting DS equations in DMCreateSubDM()


# f14d38d6 24-Mar-2019 Matthew Knepley <knepley@gmail.com>

Merged in knepley/feature-expose-section-subdm (pull request #1455)

DM: Expose creation functions for subdm and superdm from a Section

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 792b654f 18-Mar-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Expose creation functions for subdm and superdm from a Section


# 8000f006 15-Mar-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of bitbucket.org:petsc/petsc


# 9f091915 10-Mar-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'knepley/fix-subdm-check' [PR #1416]

* knepley/fix-subdm-check:
DM: Rename variable and remove spurious check.


# 696188ea 06-Mar-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Rename variable to match normal usage


# 417c459e 06-Mar-2019 Matthew G. Knepley <knepley@gmail.com>

DM: Remove spurious check


# a041468a 06-Mar-2019 Lawrence Mitchell <lawrence@wence.uk>

Merge branch 'master' into wence/feature-patch-all-at-once


# b0f52d29 28-Jan-2019 Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local>

Merge branch 'master' into jpusztay/feature-swarm-symplectic-example


# 940dfb0a 28-Jan-2019 Joseph Pusztay <josephpu@buffalo.edu>

Merged petsc/petsc into master


# 30faf514 27-Jan-2019 m_diehl <m.diehl@mpie.de>

Merged petsc/petsc into master


# 0074f91a 24-Jan-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'knepley/feature-multiple-ds' [PR #1309]


# e5e52638 04-Jan-2019 Matthew G. Knepley <knepley@gmail.com>

DM+DS: Reorganized DS handling completely do that multiple regions can be supported
- A region is labeled portion of the mesh which has the same approximation space for the solution. Note that this i

DM+DS: Reorganized DS handling completely do that multiple regions can be supported
- A region is labeled portion of the mesh which has the same approximation space for the solution. Note that this is NOT the same as the label indicating the support of a field. Regions are the refinement of the field supports into unique approximation space pieces. Right now, we only support a single strategy, namely one space on the regular mesh and one on the hybrid cells, but we only have to change DMCreateDS() to extend the capability.
- Now instead of using PetscDSSetDiscretization() and DMSetDS(), you use DMSetField() and DMCreateDS(). Also, you now must use DMCopyDisc(), instead of DMSetDS(), which copies both the field and DS structure to another DM. These changes have been made in all examples.
- DMGetCellDS() returns the approximation space for that cell
- DMGetDS() return the default space since most people will not use regions. There is still a lot of work left t generalize all methods to multiple DSes, but all old code still functions.
- DMGetRegion/RegionNumDS() gets spaces by label and region number
- DMCreateDS() is the setup method which makes the regions and corresponding DSes. With some work, this could be converted to a lazy initialization.
- Cleaned up access to DS since now we can have more than one
- Projection was improved to extract the DS for the particular cells it is iterating over
- The DS are set from options during Section creation. The idea is that people using DS would also use automatic Section creation, or they would manage things themselves and call SetFromOptions manually.
- I updated the subDM and superDM constructors, but they only work for a single region

show more ...


# 44a7f3dd 31-Dec-2018 Matthew G. Knepley <knepley@gmail.com>

DM: Reorganized DM fields
- A field is defined by a discretization (PetscFE or PetscFV) and a region (DMLabel or NULL)
- This will feed into the creation of PetscDS for every different cell system
-

DM: Reorganized DM fields
- A field is defined by a discretization (PetscFE or PetscFV) and a region (DMLabel or NULL)
- This will feed into the creation of PetscDS for every different cell system
- Changed interface for Get/SetField to add the region

show more ...


# a5a49157 25-Oct-2018 Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local>

Merge branch 'master' into jpusztay/feature-swarm-symplectic-example


# e901d7f7 25-Oct-2018 Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local>

Merge branch 'master' into jpustay/feature-swarm-example


# baeaa64e 25-Oct-2018 Joseph Pusztay <josephpu@buffalo.edu>

Merged petsc/petsc into master


# df90af56 24-Oct-2018 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into arcowie-rem/feature-error-logging

* master: (393 commits)
Bib: Update reference
Mat: Doc fix
Bib: Updated ref
PetscDS: Doc fixes
PC+LU: Do not try to refactor an

Merge branch 'master' into arcowie-rem/feature-error-logging

* master: (393 commits)
Bib: Update reference
Mat: Doc fix
Bib: Updated ref
PetscDS: Doc fixes
PC+LU: Do not try to refactor an already factored matrix
Mat: Small fix for checking and docs
Mat: Added MatSetFactorType() - Needed it when making a shell matrix look factored
PetscDS: Added PetscDSUpdateBoundary() - Lets the user change the boundary condition
single precision produces different convergence history
p4est: has a dependency on zlib - so handle it correctly
Add -mat_mffd_complex to use the Lyness complex number trick to compute J_u * v instead of differencing.
Replace VecWAXPY by VecAXPY if needed
Revert "Replace VecWAXPY by VecAXPY if needed"
Replace VecWAXPY by VecAXPY if needed
MatHermitianTransposeGetMat and MatCreateVecs
ex19: Updated test filter to avoid false positives.
DM: Improved Global-To-Natural docs Suggested-by: Josh L <ysjosh.lo@gmail.com>
Do not build shared openblas when doing static build
Upgrade OpenBLAS to 0.3.3
test: add alt output file for changes in OSX-10.14 and Xcode-10.0 [perhaps related to ML]
...

Conflicts:
src/vec/is/utils/vsectionis.c

show more ...


12345678910>>...12