History log of /petsc/include/petscpc.h (Results 1 – 25 of 1091)
Revision Date Author Comments
# 4e8208cb 31-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetC

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetCtx ctx)

See merge request petsc/petsc!8956

show more ...


# 2a8381b2 13-Jan-2026 Barry Smith <bsmith@mcs.anl.gov>

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now t

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now the standard for passing in contexts
- PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFn

Both of these are typedef to void*

Also removed most use of user and userctx for context arguments now consistently named ctx

Improved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

show more ...


# 63c91739 09-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-pcshellsetmatapplytranspose' into 'main'

PCSHELL: add PCShellSetMatApplyTranspose()

See merge request petsc/petsc!8535


# 9fa64a6b 08-Jul-2025 Pierre Jolivet <pierre@joliv.et>

PCSHELL: add PCShellSetMatApplyTranspose()


# 6fdaaf76 06-Jun-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-05-18/mv-pcsetpresolve-to-pcsetpostprocesssetup' into 'main'

Refactor PCSetPreSolve as PCSetPostSetUp

See merge request petsc/petsc!8419


# 26199062 05-Jun-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-05-17/fix-ksp-typedef-function-prototypes' into 'main'

Clean up the use of typedef function prototypes for KSP

See merge request petsc/petsc!8431


# 4d4d2bdc 17-May-2025 Barry Smith <bsmith@mcs.anl.gov>

Clean up the use of typedef function prototypes for KSP


# ab76df0c 18-May-2025 Barry Smith <bsmith@mcs.anl.gov>

Refactor PCSetPreSolve as PCSetPostSetUp

PCSetPreSolve is clunky and confusing since it mixes with the unrelated ->ops->presolve functionality. So instead introduce PCSetPostSetUp() that gets called

Refactor PCSetPreSolve as PCSetPostSetUp

PCSetPreSolve is clunky and confusing since it mixes with the unrelated ->ops->presolve functionality. So instead introduce PCSetPostSetUp() that gets called at the end of PCSetUp() and can be used with TAOPDIPM

show more ...


# 347806e7 16-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-pcmatapplytranspose' into 'main'

PC: add PCMatApplyTranspose()

See merge request petsc/petsc!8322


# 4dbf25a8 16-Apr-2025 Pierre Jolivet <pierre@joliv.et>

PC: add PCMatApplyTranspose()


# 6d8694c4 20-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-04-29/add-fortran-enums' into 'main'

Major updates to Fortran interface

See merge request petsc/petsc!7517


# ce78bad3 20-Feb-2025 Barry Smith <bsmith@petsc.dev>

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous ve

Fortran 90: fully embrace After 34 years!

- deprecate use of 'F90' in Fortran function names
- use Fortran pointers when appropriate
- the new Fortran API is not backward compatible with previous versions!
- also clean up inconsistent PETSc code detected by new Fortran generation tools
- drop use of bfort
- automatically generate all the Fortran PETSc objects, enums etc from the include files
- generate most of the Fortran interface definitions and functions from the source code
- simplify the number and organization of Fortran modules

Co-authored-by: Jose E. Roman <jroman@dsic.upv.es>

show more ...


# 189181e5 27-Nov-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'DataCompression' into 'main'

Added capability to extract CF markers from Hypre (BoomerAMG)

See merge request petsc/petsc!7907


# 42e5ec60 27-Nov-2024 Jeff-Hadley <jeha8986@colorado.edu>

Added capability to extract CF markers from Hypre (BoomerAMG)


# d8e47b63 17-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-09-02/rebased-fix-conversion-warnings' into 'main'

Compiler finds (and forbid) casts from higher precision integers to lower

See merge request petsc/petsc!7806


# 9a6c2652 09-Sep-2024 Barry Smith <bsmith@mcs.anl.gov>

Remove PCGetFailedReasonRank, since identical to PCGetFailedReason


# 4aeb8c07 02-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/gamg' into 'main'

PCGAMG: some optimizations

See merge request petsc/petsc!7798


# 6c34c54d 29-Aug-2024 Stefano Zampini <stefano.zampini@gmail.com>

PCGAMG: some brain dead optimizations

add extra information for PCView
minimize messages for simple repartitioning
minimize matrix permutations with simple redistribution
expose API to set graph sym

PCGAMG: some brain dead optimizations

add extra information for PCView
minimize messages for simple repartitioning
minimize matrix permutations with simple redistribution
expose API to set graph symmetrization (this can be useful in nested solvers when the GAMG block is symmetric but the monolithic matrix is not)
update examples output

show more ...


# aa18ff2c 06-Jun-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'lindad/user-provided-alpha-mat' into 'main'

Demonstrate approximate Benzi preconditioner for grad-div perturbations to the velocity block of Navier-Stokes

See merge request petsc/pets

Merge branch 'lindad/user-provided-alpha-mat' into 'main'

Demonstrate approximate Benzi preconditioner for grad-div perturbations to the velocity block of Navier-Stokes

See merge request petsc/petsc!7550

show more ...


# 78a3110e 06-Jun-2024 Alexander <alexlindsay239@gmail.com>

Demonstrate approximate Benzi preconditioner for grad-div perturbations to the velocity block of Navier-Stokes


# 1ed6e3ff 25-Apr-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-04-13/fix-sowing-strings' into 'main'

Update PETSc to use sowing bfort that handles string arguments and PETSC_NULL_INT

See merge request petsc/petsc!7480


# cc4c1da9 14-Apr-2024 Barry Smith <bsmith@mcs.anl.gov>

Update source code removing all unneeded /*@C and associated manual stubs and interfaces


# 0348e3cc 24-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/pcjacobi_getdiag' into 'main'

PC: Add PCJacobiGetDiag

See merge request petsc/petsc!7332


# e03abaae 01-Mar-2024 James Wright <james@jameswright.xyz>

PC: Add PCJacobiGetDiagonal


# 2398a04f 09-Feb-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/feature-jacobi-l1' into 'main'

Mat: GetAbsSum (l1) row norms; PCJacobi: add scaled L1 diagonal approximation

See merge request petsc/petsc!7260


12345678910>>...44