Ice Sheet System Model  4.18
Code documentation
IssmVec.h
Go to the documentation of this file.
1 
5 #ifndef _ISSMVEC_H_
6 #define _ISSMVEC_H_
7 
8 /*Headers:*/
9 /*{{{*/
10 #ifdef HAVE_CONFIG_H
11  #include <config.h>
12 #else
13 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
14 #endif
15 
16 #include "../../shared/Enum/Enum.h"
17 #include "../../shared/Exceptions/exceptions.h"
18 #include "../../shared/MemOps/MemOps.h"
19 #include "./IssmToolkitUtils.h"
20 #include <math.h>
21 /*}}}*/
22 
23 /*We need to template this class, in case we want to create Vectors that hold
24  IssmDouble* matrix or IssmPDouble* matrix.
25  Such vectors are useful for use without or with the matlab or python
26  interface (which do not care for IssmDouble types, but only rely on
27  IssmPDouble types)
28 */
30 template <class doubletype> class IssmSeqVec;
31 template <class doubletype> class IssmMpiVec;
32 
33 template <class doubletype>
34 class IssmVec{
35 
36  public:
37 
38  IssmAbsVec<doubletype>* vector; /*abstract vector, which implements object orientation*/
39 
40  /*IssmVec constructors, destructors*/
41  IssmVec(){ /*{{{*/
42  this->vector=NULL;
43  }
44  /*}}}*/
45  IssmVec(int M){/*{{{*/
46 
48 
49  case SeqEnum:
50  this->vector=new IssmSeqVec<doubletype>(M);
51  break;
52  case MpiEnum:
53  #ifdef _HAVE_MPI_
54  this->vector=new IssmMpiVec<doubletype>(M);
55  #else
56  _error_("Mpi vector requires compilation of MPI!");
57  #endif
58  break;
59  default:
60  _error_("vector type not supported yet!");
61  }
62  }
63  /*}}}*/
64  IssmVec(int m,int M){/*{{{*/
65 
67 
68  case SeqEnum:
69  this->vector=new IssmSeqVec<doubletype>(m,M);
70  break;
71  case MpiEnum:
72  #ifdef _HAVE_MPI_
73  this->vector=new IssmMpiVec<doubletype>(m,M);
74  #else
75  _error_("Mpi vector requires compilation of MPI!");
76  #endif
77  break;
78  default:
79  _error_("vector type not supported yet!");
80  }
81  }
82  /*}}}*/
83  IssmVec(int M,bool fromlocalsize){/*{{{*/
84 
86 
87  case SeqEnum:
88  this->vector=new IssmSeqVec<doubletype>(M,fromlocalsize);
89  break;
90  case MpiEnum:
91  #ifdef _HAVE_MPI_
92  this->vector=new IssmMpiVec<doubletype>(M,fromlocalsize);
93  #else
94  _error_("Mpi vector requires compilation of MPI!");
95  #endif
96  break;
97  default:
98  _error_("vector type not supported yet!");
99  }
100  }
101  /*}}}*/
102  IssmVec(doubletype* buffer,int M){/*{{{*/
103 
105 
106  case SeqEnum:
107  this->vector=new IssmSeqVec<doubletype>(buffer,M);
108  break;
109  case MpiEnum:
110  #ifdef _HAVE_MPI_
111  this->vector=new IssmMpiVec<doubletype>(buffer,M);
112  #else
113  _error_("Mpi vector requires compilation of MPI!");
114  #endif
115  break;
116  default:
117  _error_("vector type not supported yet!");
118  }
119  }
120  /*}}}*/
121  ~IssmVec(){/*{{{*/
122  delete this->vector;
123  }
124  /*}}}*/
125 
126  /*IssmVec specific routines*/
127  void Echo(void){/*{{{*/
128  vector->Echo();
129  }
130  /*}}}*/
131  void Assemble(void){/*{{{*/
132  vector->Assemble();
133  }
134  /*}}}*/
135  void SetValues(int ssize, int* list, doubletype* values, InsMode mode){/*{{{*/
136  vector->SetValues(ssize,list,values,mode);
137  }
138  /*}}}*/
139  void SetValue(int dof, doubletype value, InsMode mode){/*{{{*/
140  vector->SetValue(dof,value,mode);
141  }
142  /*}}}*/
143  void GetValue(doubletype* pvalue,int dof){/*{{{*/
144  vector->GetValue(pvalue,dof);
145  }
146  /*}}}*/
147  void GetSize(int* pM){/*{{{*/
148  vector->GetSize(pM);
149  }
150  /*}}}*/
151  void GetLocalSize(int* pM){/*{{{*/
152  vector->GetLocalSize(pM);
153  }
154  /*}}}*/
155  void GetLocalVector(doubletype** pvector,int** pindices){/*{{{*/
156  vector->GetLocalVector(pvector,pindices);
157  } /*}}}*/
159 
160  IssmVec<doubletype>* issmvector=NULL;
161 
162  issmvector=new IssmVec<doubletype>();
163  issmvector->vector=this->vector->Duplicate();
164  this->vector->Copy(issmvector->vector);
165 
166  return issmvector;
167  }
168  /*}}}*/
169  void Set(doubletype value){/*{{{*/
170  vector->Set(value);
171  }
172  /*}}}*/
173  void AXPY(IssmVec* X, doubletype a){/*{{{*/
174  vector->AXPY(X->vector,a);
175  }
176  /*}}}*/
177  void AYPX(IssmVec* X, doubletype a){/*{{{*/
178  vector->AYPX(X->vector,a);
179  }
180  /*}}}*/
181  doubletype* ToMPISerial(void){/*{{{*/
182  return vector->ToMPISerial();
183  }
184  /*}}}*/
185  doubletype* ToMPISerial0(void){/*{{{*/
186  return vector->ToMPISerial0();
187  }
188  /*}}}*/
189  void Shift(doubletype shift){/*{{{*/
190  vector->Shift(shift);
191  }
192  /*}}}*/
193  void Copy(IssmVec* to){/*{{{*/
194  vector->Copy(to->vector);
195  }
196  /*}}}*/
197  doubletype Norm(NormMode mode){/*{{{*/
198  return vector->Norm(mode);
199  }
200  /*}}}*/
201  void Scale(doubletype scale_factor){/*{{{*/
202  vector->Scale(scale_factor);
203  }
204  /*}}}*/
205  doubletype Dot(IssmVec* input){/*{{{*/
206  return vector->Dot(input->vector);
207  }
208  /*}}}*/
209  void PointwiseDivide(IssmVec* x,IssmVec* y){/*{{{*/
210  vector->PointwiseDivide(x->vector,y->vector);
211  }
212  /*}}}*/
213 };
214 
215 #endif //#ifndef _ISSMVEC_H_
IssmVec::AYPX
void AYPX(IssmVec *X, doubletype a)
Definition: IssmVec.h:177
IssmToolkitUtils.h
routines used throughout the ISSM toolkit
IssmVec::SetValue
void SetValue(int dof, doubletype value, InsMode mode)
Definition: IssmVec.h:139
IssmVec::IssmVec
IssmVec(doubletype *buffer, int M)
Definition: IssmVec.h:102
IssmVec::Assemble
void Assemble(void)
Definition: IssmVec.h:131
IssmVec::Shift
void Shift(doubletype shift)
Definition: IssmVec.h:189
IssmAbsVec::Echo
virtual void Echo(void)=0
IssmSeqVec
Definition: IssmSeqVec.h:31
IssmVec::SetValues
void SetValues(int ssize, int *list, doubletype *values, InsMode mode)
Definition: IssmVec.h:135
MpiEnum
@ MpiEnum
Definition: EnumDefinitions.h:1193
IssmVec::Norm
doubletype Norm(NormMode mode)
Definition: IssmVec.h:197
IssmVec::IssmVec
IssmVec(int m, int M)
Definition: IssmVec.h:64
IssmVec::Set
void Set(doubletype value)
Definition: IssmVec.h:169
IssmVec::GetSize
void GetSize(int *pM)
Definition: IssmVec.h:147
IssmVec::Scale
void Scale(doubletype scale_factor)
Definition: IssmVec.h:201
IssmVec::GetLocalSize
void GetLocalSize(int *pM)
Definition: IssmVec.h:151
IssmVec::Copy
void Copy(IssmVec *to)
Definition: IssmVec.h:193
IssmVec::~IssmVec
~IssmVec()
Definition: IssmVec.h:121
IssmVec
Definition: IssmVec.h:34
IssmVec::vector
IssmAbsVec< doubletype > * vector
Definition: IssmVec.h:38
IssmVecTypeFromToolkitOptions
int IssmVecTypeFromToolkitOptions(void)
Definition: IssmToolkitUtils.cpp:56
IssmVec::Dot
doubletype Dot(IssmVec *input)
Definition: IssmVec.h:205
IssmVec::PointwiseDivide
void PointwiseDivide(IssmVec *x, IssmVec *y)
Definition: IssmVec.h:209
IssmVec::IssmVec
IssmVec(int M)
Definition: IssmVec.h:45
IssmAbsVec
Definition: IssmAbsVec.h:24
NormMode
NormMode
Definition: toolkitsenums.h:15
SeqEnum
@ SeqEnum
Definition: EnumDefinitions.h:1273
IssmVec::AXPY
void AXPY(IssmVec *X, doubletype a)
Definition: IssmVec.h:173
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
IssmAbsVec::Duplicate
virtual IssmAbsVec< doubletype > * Duplicate(void)=0
IssmVec::IssmVec
IssmVec(int M, bool fromlocalsize)
Definition: IssmVec.h:83
IssmAbsVec::Copy
virtual void Copy(IssmAbsVec *to)=0
InsMode
InsMode
Definition: toolkitsenums.h:14
IssmVec::ToMPISerial0
doubletype * ToMPISerial0(void)
Definition: IssmVec.h:185
IssmVec::ToMPISerial
doubletype * ToMPISerial(void)
Definition: IssmVec.h:181
IssmMpiVec
Definition: IssmMpiVec.h:34
IssmVec::IssmVec
IssmVec()
Definition: IssmVec.h:41
IssmVec::Echo
void Echo(void)
Definition: IssmVec.h:127
IssmVec::GetValue
void GetValue(doubletype *pvalue, int dof)
Definition: IssmVec.h:143
IssmVec::GetLocalVector
void GetLocalVector(doubletype **pvector, int **pindices)
Definition: IssmVec.h:155
IssmVec::Duplicate
IssmVec< doubletype > * Duplicate(void)
Definition: IssmVec.h:158