petsc-3.9.4 2018-09-11
Report Typos and Errors

VecCreateMPI

Creates a parallel vector.

Synopsis

#include "petscvec.h"   
PetscErrorCode  VecCreateMPI(MPI_Comm comm,PetscInt n,PetscInt N,Vec *v)
Collective on MPI_Comm

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_DETERMINE to have calculated if n is given)

Output Parameter

vv -the vector

Notes

Use VecDuplicate() or VecDuplicateVecs() to form additional vectors of the same type as an existing vector.

See Also

VecCreateSeq(), VecCreate(), VecDuplicate(), VecDuplicateVecs(), VecCreateGhost(),
VecCreateMPIWithArray(), VecCreateGhostWithArray(), VecMPISetGhost()

Level

intermediate

Location

src/vec/vec/impls/mpi/vmpicr.c

Examples

src/vec/vec/examples/tutorials/ex1.c.html
src/vec/vec/examples/tutorials/ex11.c.html
src/vec/vec/examples/tutorials/ex42a.c.html
src/vec/vec/examples/tutorials/ex1f.F90.html
src/vec/vec/examples/tutorials/ex1f90.F90.html
src/vec/vec/examples/tutorials/ex2f.F.html
src/vec/vec/examples/tutorials/ex11f.F.html
src/vec/vec/examples/tutorials/ex20f90.F90.html
src/ksp/ksp/examples/tutorials/ex2f.F90.html
src/ksp/ksp/examples/tutorials/ex15f.F90.html
src/ksp/ksp/examples/tutorials/ex21f.F90.html

Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages