xref: /petsc/doc/changes/dev.md (revision 963d58943e99b8aca8754f7c51b22b3b421d6576)
195f7d040SSatish Balay# Changes: Development
295f7d040SSatish Balay
395f7d040SSatish Balay% STYLE GUIDELINES:
495f7d040SSatish Balay% * Capitalize sentences
595f7d040SSatish Balay% * Use imperative, e.g., Add, Improve, Change, etc.
695f7d040SSatish Balay% * Don't use a period (.) at the end of entries
795f7d040SSatish Balay% * If multiple sentences are needed, use a period or semicolon to divide sentences, but not at the end of the final sentence
895f7d040SSatish Balay
995f7d040SSatish Balay```{rubric} General:
1095f7d040SSatish Balay```
1195f7d040SSatish Balay
12a51b1039SEric Chamberland- Change behavior of `-options_left` when set to `true`: it no longer triggers a call to `PetscOptionsView()`
13a51b1039SEric Chamberland
1495f7d040SSatish Balay```{rubric} Configure/Build:
1595f7d040SSatish Balay```
1695f7d040SSatish Balay
1793d84e17SPierre Jolivet- Make `SYCL` a `devicePackage`, i.e., builds `--with-sycl` now have `PETSC_HAVE_DEVICE` defined
18c95305b8SPierre Jolivet- Add the option `--with-devicelanguage` to compile `PetscDevice` code using either a C or C++ compiler
198fc55d51SJunchao Zhang- Add `Caliper`, an instrumentation and performance profiling library that can be used to profile `Hypre`.
20*963d5894Spaul.kuehner- Add typing stubs for the Python extension module `petsc4py.PETSc`.
2193d84e17SPierre Jolivet
2295f7d040SSatish Balay```{rubric} Sys:
2395f7d040SSatish Balay```
2495f7d040SSatish Balay
25a333fa2bSZach Atkins- Add `PetscCallHYPRE()` to check HYPRE error codes and print error messages on failure
26a333fa2bSZach Atkins
27a333fa2bSZach Atkins
2895f7d040SSatish Balay```{rubric} Event Logging:
2995f7d040SSatish Balay```
3095f7d040SSatish Balay
315268dc8aSHong Zhang- Add two approaches for GPU energy monitoring:  `-log_view_gpu_energy` and `-log_view_gpu_energy_meter`
325268dc8aSHong Zhang- Add API `PetscLogGpuEnergy()`, `PetscLogGpuEnergyMeter()`, `PetscLogGpuEnergyMeterBegin()` and `PetscLogGpuEnergyMeterEnd()` for GPU energy monitoring
335268dc8aSHong Zhang
3495f7d040SSatish Balay```{rubric} PetscViewer:
3595f7d040SSatish Balay```
3695f7d040SSatish Balay
37e6aa7a3bSBarry Smith-  Change the final argument of `PetscViewerGLVisSetFields()` to `PetscCtxDestroyFn *`. This means the destroy function must dereference the argument before operating on it
38e6aa7a3bSBarry Smith
3995f7d040SSatish Balay```{rubric} PetscDraw:
4095f7d040SSatish Balay```
4195f7d040SSatish Balay
4295f7d040SSatish Balay```{rubric} AO:
4395f7d040SSatish Balay```
4495f7d040SSatish Balay
4595f7d040SSatish Balay```{rubric} IS:
4695f7d040SSatish Balay```
4795f7d040SSatish Balay
4895f7d040SSatish Balay```{rubric} VecScatter / PetscSF:
4995f7d040SSatish Balay```
5095f7d040SSatish Balay
5195f7d040SSatish Balay```{rubric} PF:
5295f7d040SSatish Balay```
5395f7d040SSatish Balay
5495f7d040SSatish Balay```{rubric} Vec:
5595f7d040SSatish Balay```
5695f7d040SSatish Balay
5795f7d040SSatish Balay```{rubric} PetscSection:
5895f7d040SSatish Balay```
5995f7d040SSatish Balay
6095f7d040SSatish Balay```{rubric} PetscPartitioner:
6195f7d040SSatish Balay```
6295f7d040SSatish Balay
6395f7d040SSatish Balay```{rubric} Mat:
6495f7d040SSatish Balay```
6595f7d040SSatish Balay
66cc1eb50dSBarry Smith- Change the `destroy()` function argument of `MatShellSetMatProductOperation()` to type `PetscCtxDestroyFn *`. This means the destroy function must dereference the argument before operating on it
67421480d9SBarry Smith- Remove `MatMissingDiagonal()`. Developers should use `MatGetDiagonalMarkers_SeqXXX()` when the functionality is needed
68b0c98d1dSPierre Jolivet- Change `MatSetOption(A, MAT_HERMITIAN, PETSC_TRUE)` for `MatSBAIJ` to no longer automatically set the option `MAT_SYMMETRIC` to `PETSC_FALSE`. It is now the duty of the user to call `MatSetOption(A, MAT_SYMMETRIC, PETSC_FALSE)` if a `MatSBAIJ` is Hermitian but not symmetric
69cc1eb50dSBarry Smith
7095f7d040SSatish Balay```{rubric} MatCoarsen:
7195f7d040SSatish Balay```
7295f7d040SSatish Balay
7395f7d040SSatish Balay```{rubric} PC:
7495f7d040SSatish Balay```
7595f7d040SSatish Balay
76cf053153SJunchao Zhang- Add multi-precision support for MUMPS. One could use `-pc_precision <single, double>` to set the precision to be used by MUMPS, which can be different from `PetscScalar`'s precision
77ac521185SJunchao Zhang- Add support for MUMPS out-of-core facility with the option `-mat_mumps_ooc_tmpdir <dir>` and new functions `MatMumpsSetOocTmpDir()`, `MatMumpsGetOocTmpDir()`
78cf053153SJunchao Zhang
7995f7d040SSatish Balay```{rubric} KSP:
8095f7d040SSatish Balay```
8195f7d040SSatish Balay
821f08b62aSPierre Jolivet- Remove `KSPHPDDMPrecision` in favor of `PetscPrecision`
831f08b62aSPierre Jolivet
8495f7d040SSatish Balay```{rubric} SNES:
8595f7d040SSatish Balay```
8695f7d040SSatish Balay
8712651944SBarry Smith- Change the `destroy()` function argument of `SNESSetConvergenceTest()` to type `PetscCtxDestroyFn *`. This means the destroy function must dereference the argument before operating on it
8876c63389SBarry Smith- Add `SNESSetObjectiveDomainError()`
8976c63389SBarry Smith- Change `SNES_DIVERGED_FNORM_NAN` to `SNES_DIVERGED_FUNCTION_NANORINF`
9076c63389SBarry Smith- Add `SNES_DIVERGED_OBJECTIVE_NANORINF`
9176c63389SBarry Smith- Add `SNES_DIVERGED_OBJECTIVE_DOMAIN`
9276c63389SBarry Smith- Add developer functions `SNESCheckFunctionDomainError()`, `SNESLineSearchCheckFunctionDomainError()`, `SNESCheckObjectiveDomainError()`, `SNESLineSearchCheckObjectiveDomainError()`, `SNESCheckJacobianDomainError()`, and `SNESLineSearchCheckJacobianDomainError()`
9312651944SBarry Smith
9495f7d040SSatish Balay```{rubric} SNESLineSearch:
9595f7d040SSatish Balay```
9695f7d040SSatish Balay
9795f7d040SSatish Balay```{rubric} TS:
9895f7d040SSatish Balay```
9995f7d040SSatish Balay
1000fe2f5c2SJames Wright- Add `TSPseudoComputeFunction()` to get nonlinear residual while avoiding recalculation if possible
101bef8cd95SJames Wright- Remove unused `TSPseudoVerifyTimeStepDefault()`
1023e02b344SJames Wright- Remove `TSPseudoComputeTimeStep()` and `TSPseudoVerifyTimeStep()`
103188af4bfSBarry Smith- Change the `destroy()` function argument of `TSTrajectorySetTransform()` to type `PetscCtxDestroyFn *`. This means the destroy function must dereference the argument before operating on it
104188af4bfSBarry Smith- Correct option `-ts_max_reject` to `-ts_max_step_rejections`
105188af4bfSBarry Smith- Correct option `-ts_dt` to `-ts_time_step`
10698cba041SBarry Smith
10795f7d040SSatish Balay```{rubric} TAO:
10895f7d040SSatish Balay```
10995f7d040SSatish Balay
11095f7d040SSatish Balay```{rubric} PetscRegressor:
11195f7d040SSatish Balay```
11295f7d040SSatish Balay
11395f7d040SSatish Balay```{rubric} DM/DA:
11495f7d040SSatish Balay```
11595f7d040SSatish Balay
116e6aa7a3bSBarry Smith-  Change the final argument of `DMShellSetDestroyContext()` to `PetscCtxDestroyFn *`. This means the destroy function must dereference the argument before operating on it
117e6aa7a3bSBarry Smith
11895f7d040SSatish Balay```{rubric} DMSwarm:
11995f7d040SSatish Balay```
12095f7d040SSatish Balay
12195f7d040SSatish Balay```{rubric} DMPlex:
12295f7d040SSatish Balay```
12395f7d040SSatish Balay
12444a422c4SJames Wright- Add `DMPlexVecGetClosureAtDepth()`
12571f1c950SStefano Zampini- Add an extra communicator argument to `DMPlexFilter()` to allow extracting local meshes
126828beda2SMark Adams- Add `DMPlexGetLETKFLocalizationMatrix` to compute localization weight matrix for LETKF
12744a422c4SJames Wright
12895f7d040SSatish Balay```{rubric} FE/FV:
12995f7d040SSatish Balay```
13095f7d040SSatish Balay
13195f7d040SSatish Balay```{rubric} DMNetwork:
13295f7d040SSatish Balay```
13395f7d040SSatish Balay
13495f7d040SSatish Balay```{rubric} DMStag:
13595f7d040SSatish Balay```
13695f7d040SSatish Balay
13795f7d040SSatish Balay```{rubric} DT:
13895f7d040SSatish Balay```
13995f7d040SSatish Balay
14095f7d040SSatish Balay```{rubric} Fortran:
14195f7d040SSatish Balay```
142b06eb4cdSBarry Smith
143b06eb4cdSBarry Smith- Replace `./configure` option `--with-mpi-f90module-visibility` with `--with-mpi-ftn-module=<mpi or mpi_f08>`
144b06eb4cdSBarry Smith- Add `PETSC_INT_KIND` and `PETSC_MPIINT_KIND`
145b06eb4cdSBarry Smith- Fortran code should now use `MPIU_Comm` instead of `MPI_Comm`, and similarly for other MPI types, see section "Fortran and MPI" in the users guide
146b06eb4cdSBarry Smith
147