#include <SpMat.h>
Public Member Functions | |
void | Create (const std::vector< IT > &essentials) |
void | Create (IT size, IT nRow, IT nCol, std::tuple< IT, IT, NT > *mytuples) |
SpMat< IT, NT, DER > | operator() (const std::vector< IT > &ri, const std::vector< IT > &ci) const |
template<typename SR > | |
void | SpGEMM (SpMat< IT, NT, DER > &A, SpMat< IT, NT, DER > &B, bool isAT, bool isBT) |
void | Split (SpMat< IT, NT, DER > &partA, SpMat< IT, NT, DER > &partB) |
void | Merge (SpMat< IT, NT, DER > &partA, SpMat< IT, NT, DER > &partB) |
Arr< IT, NT > | GetArrays () const |
std::vector< IT > | GetEssentials () const |
auto | GetInternal () const |
auto | GetInternal (int i) const |
int | getnsplit () const |
void | Transpose () |
auto | begcol () |
auto | endcol () |
auto | begcol (int i) |
auto | endcol (int i) |
template<typename X = DER> | |
auto | begnz (const typename X::SpColIter &ccol) |
template<typename X = DER> | |
auto | endnz (const typename X::SpColIter &ccol) |
template<typename X = DER> | |
auto | begnz (const typename X::SpColIter &ccol, int i) |
template<typename X = DER> | |
auto | endnz (const typename X::SpColIter &ccol, int i) |
bool | operator== (const SpMat< IT, NT, DER > &rhs) const |
std::ofstream & | put (std::ofstream &outfile) const |
std::ifstream & | get (std::ifstream &infile) |
bool | isZero () const |
IT | getnrow () const |
IT | getncol () const |
IT | getnnz () const |
Friends | |
template<typename UIT , typename UNT , typename UDER > | |
std::ofstream & | operator<< (std::ofstream &outfile, const SpMat< UIT, UNT, UDER > &s) |
template<typename UIT , typename UNT , typename UDER > | |
std::ifstream & | operator>> (std::ifstream &infile, SpMat< UIT, UNT, UDER > &s) |
template<class SR , class NUO , class IU , class NU1 , class NU2 , class DER1 , class DER2 > | |
SpTuples< IU, NUO > * | MultiplyReturnTuples (const SpMat< IU, NU1, DER1 > &A, const SpMat< IU, NU2, DER2 > &B, bool isAT, bool isBT, bool clearA, bool clearB) |
The abstract base class for all derived sequential sparse matrix classes Contains no data members, hence no copy constructor/assignment operator Uses static polymorphism through curiously recurring templates (CRTP) Template parameters: IT (index type), NT (numerical type), DER (derived class type)
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Standard destructor, copy ctor and assignment are generated by compiler, they all do nothing ! Default constructor also exists, and does nothing more than creating Base<Derived>() and Derived() objects One has to call one of the overloaded create functions to get an nonempty object
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
void combblas::SpMat< IT, NT, DER >::Merge | ( | SpMat< IT, NT, DER > & | partA, |
SpMat< IT, NT, DER > & | partB | ||
) |
SpMat< IT, NT, DER > combblas::SpMat< IT, NT, DER >::operator() | ( | const std::vector< IT > & | ri, |
const std::vector< IT > & | ci | ||
) | const |
bool combblas::SpMat< IT, NT, DER >::operator== | ( | const SpMat< IT, NT, DER > & | rhs | ) | const |
|
inline |
void combblas::SpMat< IT, NT, DER >::SpGEMM | ( | SpMat< IT, NT, DER > & | A, |
SpMat< IT, NT, DER > & | B, | ||
bool | isAT, | ||
bool | isBT | ||
) |
void combblas::SpMat< IT, NT, DER >::Split | ( | SpMat< IT, NT, DER > & | partA, |
SpMat< IT, NT, DER > & | partB | ||
) |
|
inline |
|
friend |
|
friend |
|
friend |