Chaste Commit::ca8ccdedf819b6e02855bc0e8e6f50bdecbc5208
|
#include <DistributedVector.hpp>
Public Member Functions | |
Chunk (DistributedVector parallelVec, unsigned chunk) | |
double & | operator[] (unsigned globalIndex) |
double & | operator[] (Iterator index) |
Private Attributes | |
unsigned | mOffset |
double * | mpVec |
unsigned | mLo |
unsigned | mHi |
Provide access to a particular chunk of a chunked vector.
A chunked vector has multiple types of information encoded within a single vector, with a layout like [x_1, x_2, ..., x_n, y_1, y_2, ... y_n]. This class provides easy access to, for example, the x values.
Definition at line 263 of file DistributedVector.hpp.
|
inline |
Constructor.
parallelVec | chunked vector |
chunk | number of this chunk within the vector starting from 0 |
Definition at line 277 of file DistributedVector.hpp.
References DistributedVector::GetHigh(), DistributedVector::GetLow(), mHi, mLo, mOffset, DistributedVector::mpVec, mpVec, and DistributedVector::mSizeMultiplier.
index |
Definition at line 308 of file DistributedVector.hpp.
Access a particular element of the chunk if on this processor. For use in tests. Will throw a DistributedVectorException if the specified element is not on this process.
globalIndex | index within the chunk |
Definition at line 294 of file DistributedVector.hpp.
|
private |
One above the last entry owned by the current processor.
Definition at line 268 of file DistributedVector.hpp.
Referenced by Chunk(), and operator[]().
|
private |
The first entry owned by the current processor.
Definition at line 267 of file DistributedVector.hpp.
Referenced by Chunk(), and operator[]().
|
private |
The start of this chunk within the locally-owned part of the vector.
Definition at line 265 of file DistributedVector.hpp.
Referenced by Chunk(), operator[](), and operator[]().
|
private |
The local part of the underlying PETSc vector.
Definition at line 266 of file DistributedVector.hpp.
Referenced by Chunk(), operator[](), and operator[]().