History log of /petsc/src/sys/utils/openmp/mpmpishm.c (Results 1 – 4 of 4)
Revision Date Author Comments
# d8f7746b 28-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-Wshorten-64-to-32' into 'main'

Fix -Wshorten-64-to-32

See merge request petsc/petsc!8242


# d83f41f0 26-Mar-2025 Pierre Jolivet <pierre@joliv.et>

Fix -Wshorten-64-to-32

petsc/src/sys/utils/openmp/mpmpishm.c:227:88: warning: implicit conversion loses integer precision: 'PetscInt' (aka 'long') to 'int' [-Wshorten-64-to-32]
227 | PetscCallMP

Fix -Wshorten-64-to-32

petsc/src/sys/utils/openmp/mpmpishm.c:227:88: warning: implicit conversion loses integer precision: 'PetscInt' (aka 'long') to 'int' [-Wshorten-64-to-32]
227 | PetscCallMPI(MPI_Reduce(ctrl->is_omp_master ? MPI_IN_PLACE : cpu_ulongs, cpu_ulongs, nr_cpu_ulongs, MPI_UNSIGNED_LONG, MPI_BOR, 0, ctrl->omp_comm));
| ~~~~~~~~~~ ^~~~~~~~~~~~~

show more ...


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