History log of /petsc/src/vec/is/utils/pmap.c (Results 1 – 25 of 286)
Revision Date Author Comments
# d9126033 13-Feb-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/cgns_bc_writing' into 'main'

Plex: CGNS files write and read boundary conditions and face label information

See merge request petsc/petsc!8934


# 83e31f1c 20-Jan-2026 James Wright <james@jameswright.xyz>

fix(layout): Set global size as limit of ranges rather than max size

This will allow layouts to start from a non-zero index


# 5d4b16a5 06-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 10782a19 04-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/layout-fix' into 'release'

fix(layout): Remove erroneous 'break' statement

See merge request petsc/petsc!8927


# f0edcda5 02-Jan-2026 James Wright <james@jameswright.xyz>

fix(layout): Remove erroneous 'break' statement

This break was added in error in !5655. When using PETSC_OWN_POINTER,
map->range is never set. The original fall-through mechanic was
intentional and

fix(layout): Remove erroneous 'break' statement

This break was added in error in !5655. When using PETSC_OWN_POINTER,
map->range is never set. The original fall-through mechanic was
intentional and should have been kept

Co-authored-by: Pierre Jolivet <pierre@joliv.et>

show more ...


# 4966afa4 25-Aug-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 3c329903 20-Aug-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-08-11/docs-layout-dmplex/release' into 'release'

Improve/format layout and dmplex manual pages

See merge request petsc/petsc!8642


# e1b2f275 20-Aug-2025 Barry Smith <bsmith@mcs.anl.gov>

Improve/format layout and dmplex manual pages


# 174dc0c8 28-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 63ad3209 25-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-04-17/rm-dollar-sign-formated-manualpages/release' into 'release'

Remove the last of the uses of $ in the first line of formatted manual pages

See merge request petsc/petsc

Merge branch 'barry/2025-04-17/rm-dollar-sign-formated-manualpages/release' into 'release'

Remove the last of the uses of $ in the first line of formatted manual pages

See merge request petsc/petsc!8332

show more ...


# b44f4de4 25-Apr-2025 Barry Smith <bsmith@mcs.anl.gov>

Remove the last of the uses of $ in the first line of formatted manual pages


# 4f037aad 27-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/bs' into 'main'

PetscLayout: set default block size to 1

See merge request petsc/petsc!8226


# 58b7e2c1 23-Mar-2025 Stefano Zampini <stefano.zampini@gmail.com>

PetscLayout: default block size 1


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


# 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


# 462c564d 14-Sep-2024 Barry Smith <bsmith@mcs.anl.gov>

Fix MPIU_* routines to always return MPI error codes and thus be usable with PetscCallMPI()

Introduce MPIU_Count to be used when MPI_Count is not available


# 7c485f38 09-Jul-2024 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 91fd0dc0 09-Jul-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-07-08/minor-plex-docs/release' into 'release'

Build PETSc and petsc4py docs with the same requirements file

See merge request petsc/petsc!7678


# 2c9a7b26 09-Jul-2024 Barry Smith <bsmith@mcs.anl.gov>

improve a few plex manual pages


# a623e290 12-Jun-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2024-05-29/minor-fortran-stub-cleanup' into 'main'

More improvements to Fortran stubs and interfaces

See merge request petsc/petsc!7598


# 5d83a8b1 30-May-2024 Barry Smith <bsmith@mcs.anl.gov>

This requires some changes to user FORTRAN code

Pass PETSC_NULL_XXX_ARRAY when passing a NULL as an argument that is expecting an array
Pass PETSC_NULL_ENUM when argument returns an enum instead of

This requires some changes to user FORTRAN code

Pass PETSC_NULL_XXX_ARRAY when passing a NULL as an argument that is expecting an array
Pass PETSC_NULL_ENUM when argument returns an enum instead of PETSC_NULL_INTEGER
Pass arrays (and not scalar values) when the argument is expecting an array; this means replace, for example, the argument v with [v]
Use PetscObjectIsNull(obj) to check if the object is NULL, instead of obj == PETSC_NULL_XXX

The compiler will now automatically prevent you from using the wrong argument type for the first three bullets above
This will also require an update sowing with the new sowing branch this MR is using.

show more ...


# ec50fa89 13-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/firedrake-1' into 'main'

Updates for Firedrake: first batch

See merge request petsc/petsc!7358


# da0802e2 28-Feb-2024 Stefano Zampini <stefano.zampini@gmail.com>

minor fixes


# 970231d2 07-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/clang-format-18' into 'main'

clang-format version 18

See merge request petsc/petsc!6902


12345678910>>...12