KASKADE 7 development version
|
A base class representing basic meta information about sparsity patterns of NUMA matrix chunks. More...
#include <threadedMatrix.hh>
A base class representing basic meta information about sparsity patterns of NUMA matrix chunks.
Definition at line 270 of file threadedMatrix.hh.
Public Member Functions | |
CRSChunkPatternInfo (Index first_, Index last_, Index cols_, bool symmetric, int node) | |
Constructor. More... | |
Index | first () const |
start of the covered row range More... | |
Index | last () const |
end of the half-open row range More... | |
Index | columns () const |
number of columns in the matrix More... | |
int | node () const |
the NUMA node on which to allocate the memory More... | |
bool | symmetric () const |
if true, only the lower triangular part is stored More... | |
Protected Attributes | |
Index | firstRow |
Index | lastRow |
Index | cols |
|
inline |
Constructor.
firstRow | index of first row |
lastRow | index one behind the las row (half-open STL style range) |
cols | the number of columns |
symmetric | if true, store only lower triangular part |
node | NUMA node on which to hold the memory |
Definition at line 281 of file threadedMatrix.hh.
|
inline |
number of columns in the matrix
Definition at line 298 of file threadedMatrix.hh.
|
inline |
start of the covered row range
Definition at line 288 of file threadedMatrix.hh.
|
inline |
end of the half-open row range
Definition at line 293 of file threadedMatrix.hh.
|
inline |
the NUMA node on which to allocate the memory
Definition at line 303 of file threadedMatrix.hh.
|
inline |
if true, only the lower triangular part is stored
Definition at line 308 of file threadedMatrix.hh.
|
protected |
Definition at line 312 of file threadedMatrix.hh.
Referenced by Kaskade::ThreadedMatrixDetail::CRSChunkPatternInfo< Index >::columns().
|
protected |
Definition at line 311 of file threadedMatrix.hh.
Referenced by Kaskade::ThreadedMatrixDetail::CRSChunkPatternInfo< Index >::first().
|
protected |
Definition at line 311 of file threadedMatrix.hh.
Referenced by Kaskade::ThreadedMatrixDetail::CRSChunkPatternInfo< Index >::last().