VecGetOwnershipRange#
Returns the range of indices owned by this processor, assuming that the vectors are laid out with the first n1 elements on the first processor, next n2 elements on the second, etc. For certain parallel layouts this range may not be well defined.
Synopsis#
#include "petscvec.h"
PetscErrorCode VecGetOwnershipRange(Vec x,PetscInt *low,PetscInt *high)
Not Collective
Input Parameter#
- x
the vector
Output Parameters#
- low
the first local element, pass in NULL if not interested
- high
one more than the last local element, pass in NULL if not interested
Note#
The high argument is one more than the last element stored locally.
Fortran: PETSC_NULL_INTEGER should be used instead of NULL
See Also#
MatGetOwnershipRange()
, MatGetOwnershipRanges()
, VecGetOwnershipRanges()
Level#
beginner
Location#
Examples#
src/vec/vec/utils/tagger/tutorials/ex1.c.html
src/vec/vec/tutorials/ex10.c.html
src/vec/vec/tutorials/ex14f.F90.html
src/vec/vec/tutorials/ex15.c.html
src/vec/vec/tutorials/ex16.c.html
src/vec/vec/tutorials/ex16f.F90.html
src/vec/vec/tutorials/ex18.c.html
src/vec/vec/tutorials/ex18f.F90.html
src/vec/vec/tutorials/ex3.c.html
src/vec/vec/tutorials/ex3f.F90.html
src/vec/vec/tutorials/ex5.c.html
Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages