VecCreateShared
Creates a parallel vector that uses shared memory.
Synopsis
int VecCreateShared(MPI_Comm comm, int n, int N, Vec *v)
Input Parameters
comm -the MPI communicator to use
n -local vector length (or PETSC_DECIDE to have calculated if N is given)
N -global vector length (or PETSC_DECIDE to have calculated if n is given)
Output Parameter
vv -the vector
Collective on MPI_Comm
Notes
Currently VecCreateShared() is available only on the SGI; otherwise,
this routine is the same as VecCreateMPI().
Use VecDuplicate() or VecDuplicateVecs() to form additional vectors of the
same type as an existing vector.
Keywords
vector, create, shared
See Also
VecCreateSeq(), VecCreate(), VecCreateMPI(), VecDuplicate(), VecDuplicateVecs(),
VecCreateGhost(), VecCreateMPIWithArray(), VecCreateGhostWithArray()
Examples
src/snes/examples/tutorials/ex5s.c
Level:advanced
Location:src/vec/impls/shared/shvec.c
Vector Index
Table of Contents