#include <PetscVec.h>
|
| PetscVec () |
|
| PetscVec (int M, bool fromlocalsize=false) |
|
| PetscVec (int m, int M) |
|
| PetscVec (IssmDouble *buffer, int M) |
|
| PetscVec (Vec petsc_vec) |
|
| ~PetscVec () |
|
void | Echo (void) |
|
void | Assemble (void) |
|
void | SetValues (int ssize, int *list, IssmDouble *values, InsMode mode) |
|
void | SetValue (int dof, IssmDouble value, InsMode mode) |
|
void | GetValue (IssmDouble *pvalue, int dof) |
|
void | GetSize (int *pM) |
|
void | GetLocalSize (int *pM) |
|
void | GetLocalVector (IssmDouble **pvector, int **pindices) |
|
PetscVec * | Duplicate (void) |
|
void | Set (IssmDouble value) |
|
void | AXPY (PetscVec *X, IssmDouble a) |
|
void | AYPX (PetscVec *X, IssmDouble a) |
|
IssmDouble * | ToMPISerial (void) |
|
IssmDouble * | ToMPISerial0 (void) |
|
void | Shift (IssmDouble shift) |
|
void | Copy (PetscVec *to) |
|
IssmDouble | Norm (NormMode norm_type) |
|
IssmDouble | Max (void) |
|
void | Scale (IssmDouble scale_factor) |
|
void | Pow (IssmDouble scale_factor) |
|
void | PointwiseDivide (PetscVec *x, PetscVec *y) |
|
void | PointwiseMult (PetscVec *x, PetscVec *y) |
|
IssmDouble | Dot (PetscVec *vector) |
|
Definition at line 22 of file PetscVec.h.
◆ PetscVec() [1/5]
◆ PetscVec() [2/5]
PetscVec::PetscVec |
( |
int |
M, |
|
|
bool |
fromlocalsize = false |
|
) |
| |
◆ PetscVec() [3/5]
PetscVec::PetscVec |
( |
int |
m, |
|
|
int |
M |
|
) |
| |
◆ PetscVec() [4/5]
Definition at line 56 of file PetscVec.cpp.
59 if(M)idxm=xNew<int>(M);
60 for(
int i=0;i<M;i++) idxm[i]=i;
63 VecSetValues(this->
vector,M,idxm,serial_vec,INSERT_VALUES);
64 VecAssemblyBegin(this->
vector);
65 VecAssemblyEnd(this->
vector);
◆ PetscVec() [5/5]
PetscVec::PetscVec |
( |
Vec |
petsc_vec | ) |
|
◆ ~PetscVec()
◆ Echo()
void PetscVec::Echo |
( |
void |
| ) |
|
◆ Assemble()
void PetscVec::Assemble |
( |
void |
| ) |
|
◆ SetValues()
void PetscVec::SetValues |
( |
int |
ssize, |
|
|
int * |
list, |
|
|
IssmDouble * |
values, |
|
|
InsMode |
mode |
|
) |
| |
◆ SetValue()
◆ GetValue()
void PetscVec::GetValue |
( |
IssmDouble * |
pvalue, |
|
|
int |
dof |
|
) |
| |
◆ GetSize()
void PetscVec::GetSize |
( |
int * |
pM | ) |
|
◆ GetLocalSize()
void PetscVec::GetLocalSize |
( |
int * |
pM | ) |
|
◆ GetLocalVector()
void PetscVec::GetLocalVector |
( |
IssmDouble ** |
pvector, |
|
|
int ** |
pindices |
|
) |
| |
Definition at line 123 of file PetscVec.cpp.
137 PetscInt lower_row,upper_row;
138 VecGetOwnershipRange(this->
vector,&lower_row,&upper_row);
139 int range=upper_row-lower_row;
149 int* indices=xNew<int>(range);
150 for(
int i=0;i<range;i++) indices[i]=lower_row+i;
153 VecGetValues(this->
vector,range,indices,values);
◆ Duplicate()
◆ Set()
◆ AXPY()
◆ AYPX()
◆ ToMPISerial()
◆ ToMPISerial0()
◆ Shift()
◆ Copy()
◆ Norm()
◆ Max()
◆ Scale()
◆ Pow()
◆ PointwiseDivide()
◆ PointwiseMult()
◆ Dot()
◆ vector
The documentation for this class was generated from the following files: