| #
1fd50544
|
| 20-Feb-2020 |
Stefano Zampini <stefano.zampini@gmail.com> |
DMForest: minor
|
| #
5d107231
|
| 12-Feb-2020 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/fix-more-typos' into 'master'
Fix more typos and add missing examples
See merge request petsc/petsc!2511
|
| #
fd292e60
|
| 12-Feb-2020 |
prj- <pierre.jolivet@enseeiht.fr> |
Fix more typos and add missing examples
|
| #
dfb7f63b
|
| 09-Jul-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'barry/feature-boundedint'
|
| #
f1a1a6be
|
| 02-Jul-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Fixed some PetscOptionsInt out of range tests
Commit-type: bug-fix Reported-by: nightly tests
|
| #
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 ...
|
| #
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
|
| #
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
|
| #
a1a5ab92
|
| 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]
|
| #
ddad275a
|
| 21-Jan-2019 |
Patrick Farrell <patrick@pefarrell.org> |
Merge branch 'master' into knepley/feature-snes-patch
|
| #
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 ...
|
| #
49be4549
|
| 04-Jan-2019 |
Matthew G. Knepley <knepley@gmail.com> |
DM: Moved the flag indicating options were set to DM
|
| #
ebdc3ca9
|
| 28-Dec-2018 |
Karl Rupp <me@karlrupp.net> |
Merge branch 'knepley/feature-label-object' [PR #1284]
* knepley/feature-label-object: DMLabel: Make it a PetscObject
|
| #
d78cf955
|
| 21-Dec-2018 |
Matthew G. Knepley <knepley@gmail.com> |
Merge remote-tracking branch 'origin/knepley/feature-label-object' into knepley/feature-section-label
* origin/knepley/feature-label-object: DMLabel: When distributing, do not need a valid Label f
Merge remote-tracking branch 'origin/knepley/feature-label-object' into knepley/feature-section-label
* origin/knepley/feature-label-object: DMLabel: When distributing, do not need a valid Label from processes which we are sending to Plex: Cannot assume label "markers" exists Forest ex2: Fixed DMLabelCreate() DMLabel: Remove Fortran binding for DMLabelGetName() TS ex11: Fixed interface for DMLabelCreate() DMLabel: Make it a PetscObject - Add a CLASSID - Constructor takes an MPI_Comm - Remove interface that is in Object - Update interface in library - Fixed location of destruct in DMPlexCreateSubmeshGeneric_Interpolated() - Added DMLabelReset()
show more ...
|
| #
2c2595ff
|
| 20-Dec-2018 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'master' into knepley/fix-plex-partition-parallel
* master: (414 commits) very small updates to users manual syntax is define(XXX) in examples tests not defined(XXX) Increase patc
Merge branch 'master' into knepley/fix-plex-partition-parallel
* master: (414 commits) very small updates to users manual syntax is define(XXX) in examples tests not defined(XXX) Increase patchlevel to 3.10.3 petsc4py: updat to latest maint snapshot with SNESTEST updates Fix link for CUDA example in PETSc from GPUs.html page Minor fixes to installation instructions Mat: Fixed types in Pardiso interface Converted example comment to latex This example crashes (for unknown reasons, probably related to the handling of extended derived types passed as arguments) with the PGI Fortran compiler Remove outdated requires: from top of several examples remove outdated test requires: command from top of source file Fix the documentation for -ksp_gmres_cgs_refinement_type Commit f20c2d659b168217cb455989f28afe052d71a64c broke lex.py so the users manual was no longer being built. There reverted the changes to lex.py Plex: Add PetscPartitioner to fort list Suggested-by: Jiaoyan Li <Jiaoyan.Li@inl.gov> Doc: Fix spelling Suggested-by: Manuel Colera Rico <m.colera@upm.es> Mat ex88: check in double or quad precision only Fix error with PetscComplex when PETSc is compiled with C and used in C++ configure: fix typo endwith -> endswith Sys ex23: Migrated to ts_max_time in yaml file as well. AO ex5: Fixed missing CHKERRQ(); Mat test ex88: add tests for MatMultAdd and MatMultTranposeAdd ...
Conflicts: src/dm/impls/plex/examples/tests/ex12.c
show more ...
|
| #
d67d17b1
|
| 20-Dec-2018 |
Matthew G. Knepley <knepley@gmail.com> |
DMLabel: Make it a PetscObject - Add a CLASSID - Constructor takes an MPI_Comm - Remove interface that is in Object - Update interface in library - Fixed location of destruct in DMPlexCreateSubmeshGe
DMLabel: Make it a PetscObject - Add a CLASSID - Constructor takes an MPI_Comm - Remove interface that is in Object - Update interface in library - Fixed location of destruct in DMPlexCreateSubmeshGeneric_Interpolated() - Added DMLabelReset()
show more ...
|
| #
34d8b122
|
| 09-Dec-2018 |
Patrick Farrell <patrick@pefarrell.org> |
Merge branch 'master' into knepley/feature-snes-patch
Not sure if this has done the right thing because there are no tests yet. Also, the fortran stubs break (it doesn't know what to do with SNESCo
Merge branch 'master' into knepley/feature-snes-patch
Not sure if this has done the right thing because there are no tests yet. Also, the fortran stubs break (it doesn't know what to do with SNESCompositeType), and I don't know how to fix it.
show more ...
|
| #
f35fe2a5
|
| 06-Dec-2018 |
Joseph Pusztay <josephpu@buffalo.edu> |
Merged petsc/petsc into master
|