PetscObjectComm#
Gets the MPI communicator for any PetscObject
regardless of the type.
Synopsis#
#include "petscsys.h"
MPI_Comm PetscObjectComm(PetscObject obj)
Not Collective, No Fortran Support
Input Parameter#
obj - any PETSc object, for example a
Vec
,Mat
orKSP
. It must be cast with a (PetscObject
), for example,PetscObjectComm
((PetscObject
)mat,…);
Note#
Returns the MPI communicator or MPI_COMM_NULL
if obj
is not valid.
This is one of the rare PETSc routines that does not return an error code. Use PetscObjectGetComm()
when appropriate for error handling.
See Also#
Level#
advanced
Location#
Examples#
src/ts/tutorials/ex76.c
src/ts/tutorials/ex11.c
src/ts/tutorials/ex77.c
src/dm/impls/stag/tutorials/ex6.c
src/dm/impls/plex/tutorials/ex11.c
src/ts/tutorials/ex14.c
src/ts/tutorials/ex11_sa.c
src/ts/tutorials/ex53.c
src/ts/tutorials/ex45.c
src/dm/impls/stag/tutorials/ex4.c
Index of all Sys routines
Table of Contents for all manual pages
Index of all manual pages