DMGetLocalToGlobalMapping#
Accesses the local-to-global mapping in a DM
.
Synopsis#
#include "petscdm.h"
#include "petscdmlabel.h"
#include "petscds.h"
PetscErrorCode DMGetLocalToGlobalMapping(DM dm, ISLocalToGlobalMapping *ltog)
Collective
Input Parameter#
dm - the
DM
that provides the mapping
Output Parameter#
ltog - the mapping
Notes#
The global to local mapping allows one to set values into the global vector or matrix using VecSetValuesLocal()
and MatSetValuesLocal()
Vectors obtained with DMCreateGlobalVector()
and matrices obtained with DMCreateMatrix()
already contain the global mapping so you do
need to use this function with those objects.
This mapping can then be used by VecSetLocalToGlobalMapping()
or MatSetLocalToGlobalMapping()
.
See Also#
DM Basics, DM
, DMCreateLocalVector()
, DMCreateGlobalVector()
, VecSetLocalToGlobalMapping()
, MatSetLocalToGlobalMapping()
,
DMCreateMatrix()
Level#
advanced
Location#
Examples#
src/snes/tutorials/ex48.c
src/ksp/ksp/tutorials/ex70.c
src/ksp/ksp/tutorials/ex49.c
src/ksp/ksp/tutorials/ex43.c
src/tao/bound/tutorials/plate2.c
src/ksp/ksp/tutorials/ex71.c
Implementations#
DMGetLocalToGlobalMapping_Composite() in src/dm/impls/composite/pack.c
Index of all DM routines
Table of Contents for all manual pages
Index of all manual pages