46 #ifndef _PEXSI_PSELINV_HPP_
47 #define _PEXSI_PSELINV_HPP_
64 #include "pexsi/TreeBcast.hpp"
71 #define IDX_TO_TAG(lidx,tag,max) ((SELINV_TAG_COUNT*(lidx%(max+1))+(tag)))
72 #define IDX_TO_TAG2(sidx,lidx,tag) (SELINV_TAG_COUNT*(sidx)+(tag))
73 #define TAG_TO_IDX(tag,typetag) (((tag)-(typetag))/SELINV_TAG_COUNT)
81 enum MSGTYPE {LSIZE=0,LROWSIZE,USIZE,UCOLSIZE,LCONTENT,LROWCONTENT,UCONTENT,UCOLCONTENT,MSGCOUNT};
86 bool operator() (
int i,
int j) {
return ((lookup)(i)<(lookup)(j));}
91 typedef std::vector<bool> bitMask;
92 typedef std::map<bitMask , std::vector<Int> > bitMaskSet;
151 GridType( MPI_Comm Bcomm,
int nprow,
int npcol );
217 LBlock& operator = (
const LBlock& LB) {
225 friend std::ostream& operator<<(std::ostream& out,
const LBlock& vec)
227 out <<
"(" << vec.blockIdx <<
", " << vec.numRow <<
", " << vec.numCol <<std::endl<<
"rows " << vec.rows <<std::endl<<
"nzval " <<std::endl<< vec.nzval <<
")";
267 UBlock& operator = (
const UBlock& UB) {
276 friend std::ostream& operator<<(std::ostream& out,
const UBlock& vec)
278 out <<
"(" << vec.blockIdx <<
", " << vec.numRow <<
", " << vec.numCol <<std::endl<<
"cols " << vec.cols <<std::endl<<
"nzval " <<std::endl<< vec.nzval <<
")";
292 {
return g->mpirank; }
296 {
return g->mpirank / g->numProcCol; }
300 {
return g->mpirank % g->numProcCol; }
305 {
return bnum % g->numProcRow; }
310 {
return bnum % g->numProcCol; }
315 {
return (i%g->numProcRow) * g->numProcCol + j%g->numProcCol; }
320 {
return bnum / g->numProcRow; }
325 {
return bnum / g->numProcCol; }
330 {
return iLocal * g->numProcRow +
MYROW( g ); }
335 {
return jLocal * g->numProcCol +
MYCOL( g ); }
340 {
return (a%b) ? ( a/b + 1 ) : ( a/b ); }
344 {
return s->superIdx[i]; }
349 {
return s->superPtr[bnum]; }
356 {
return s->superPtr[bnum]; }
361 {
return s->superPtr[bnum+1] - s->superPtr[bnum]; }
365 {
return s->superPtr.m() - 1; }
370 {
return s->superIdx.m(); }
394 namespace LBlockMask{
407 Int
inline serialize(LBlock<T>& val, std::ostream& os,
const std::vector<Int>& mask){
408 if(mask[LBlockMask::BLOCKIDX]==1) serialize(val.blockIdx, os, mask);
409 if(mask[LBlockMask::NUMROW ]==1) serialize(val.numRow, os, mask);
410 if(mask[LBlockMask::NUMCOL ]==1) serialize(val.numCol, os, mask);
411 if(mask[LBlockMask::ROWS ]==1) serialize(val.rows, os, mask);
412 if(mask[LBlockMask::NZVAL ]==1) serialize(val.nzval, os, mask);
417 Int
inline deserialize(LBlock<T>& val, std::istream& is,
const std::vector<Int>& mask){
418 if(mask[LBlockMask::BLOCKIDX]==1) deserialize(val.blockIdx, is, mask);
419 if(mask[LBlockMask::NUMROW ]==1) deserialize(val.numRow, is, mask);
420 if(mask[LBlockMask::NUMCOL ]==1) deserialize(val.numCol, is, mask);
421 if(mask[LBlockMask::ROWS ]==1) deserialize(val.rows, is, mask);
422 if(mask[LBlockMask::NZVAL ]==1) deserialize(val.nzval, is, mask);
442 namespace UBlockMask{
454 Int
inline serialize(UBlock<T>& val, std::ostream& os,
const std::vector<Int>& mask){
456 if(mask[i]==1) serialize(val.blockIdx, os, mask); i++;
457 if(mask[i]==1) serialize(val.numRow, os, mask); i++;
458 if(mask[i]==1) serialize(val.numCol, os, mask); i++;
459 if(mask[i]==1) serialize(val.cols, os, mask); i++;
460 if(mask[i]==1) serialize(val.nzval, os, mask); i++;
465 Int
inline deserialize(UBlock<T>& val, std::istream& is,
const std::vector<Int>& mask){
467 if(mask[i]==1) deserialize(val.blockIdx, is, mask); i++;
468 if(mask[i]==1) deserialize(val.numRow, is, mask); i++;
469 if(mask[i]==1) deserialize(val.numCol, is, mask); i++;
470 if(mask[i]==1) deserialize(val.cols, is, mask); i++;
471 if(mask[i]==1) deserialize(val.nzval, is, mask); i++;
555 SELINV_TAG_U_CONTENT,
557 SELINV_TAG_L_CONTENT,
560 SELINV_TAG_D_CONTENT,
562 SELINV_TAG_L_SIZE_CD,
563 SELINV_TAG_L_CONTENT_CD,
568 std::vector<std::vector<Int> > ColBlockIdx_;
569 std::vector<std::vector<Int> > RowBlockIdx_;
586 std::vector<std::vector<LBlock<T> > > L_;
587 std::vector<std::vector<UBlock<T> > > U_;
589 std::vector<std::vector<Int> > workingSet_;
605 std::vector<TreeBcast2<T> *> fwdToBelowTree2_;
606 std::vector<TreeBcast2<T> *> fwdToRightTree2_;
608 std::vector<TreeBcast *> fwdToBelowTree_;
609 std::vector<TreeBcast *> fwdToRightTree_;
610 std::vector<TreeReduce<T> *> redToLeftTree_;
611 std::vector<TreeReduce<T> *> redToAboveTree_;
618 std::vector<Int> RowLocalPtr;
619 std::vector<Int> BlockIdxLocal;
620 std::vector<char> SstrLcolSend;
621 std::vector<char> SstrUrowSend;
622 std::vector<char> SstrLcolRecv;
623 std::vector<char> SstrUrowRecv;
624 Int SizeSstrLcolSend;
625 Int SizeSstrUrowSend;
626 Int SizeSstrLcolRecv;
627 Int SizeSstrUrowRecv;
661 inline void GetWorkSet(std::vector<Int> & snodeEtree, std::vector<std::vector<Int> > & WSet);
670 inline void SendRecvCD_UpdateU(std::vector<SuperNodeBufferType > & arrSuperNodes, Int stepSuper);
690 Int NumCol()
const {
return super_ -> superIdx.m(); }
692 Int NumSuper()
const {
return super_ ->superPtr.m() - 1; }
701 std::vector< std::vector<Int> > & ColBlockIdx() {
return ColBlockIdx_; }
702 std::vector< std::vector<Int> > & RowBlockIdx() {
return RowBlockIdx_; }
703 std::vector<Int> & ColBlockIdx(Int jLocal) {
return ColBlockIdx_[jLocal]; }
704 std::vector<Int> & RowBlockIdx(Int iLocal) {
return RowBlockIdx_[iLocal]; }
709 Int
NumBlockL( Int jLocal )
const {
return L_[jLocal].size(); }
713 Int
NumBlockU( Int iLocal )
const {
return U_[iLocal].size(); }
724 std::vector<LBlock<T> >&
L( Int jLocal ) {
return L_[jLocal]; }
728 std::vector<UBlock<T> >&
U( Int iLocal ) {
return U_[iLocal]; }
732 std::vector<std::vector<int> >&
WorkingSet( ) {
return workingSet_; }
737 Int
CountSendToRight(Int ksup) { Int count= std::count (isSendToRight_.VecData(ksup), isSendToRight_.VecData(ksup) + grid_->numProcCol,
true);
return (isSendToRight_(
MYCOL(grid_),ksup)?count-1:count); }
741 Int
CountSendToBelow(Int ksup) { Int count= std::count (isSendToBelow_.VecData(ksup), isSendToBelow_.VecData(ksup) + grid_->numProcRow,
true);
return (isSendToBelow_(
MYROW(grid_),ksup)?count-1:count); }
745 Int
CountRecvFromBelow(Int ksup) { Int count= std::count (isRecvFromBelow_.VecData(ksup), isRecvFromBelow_.VecData(ksup) + grid_->numProcRow,
true);
return (isRecvFromBelow_(
MYROW(grid_),ksup)?count-1:count); }
749 Int
CountSendToCrossDiagonal(Int ksup) { Int count= std::count (isSendToCrossDiagonal_.VecData(ksup), isSendToCrossDiagonal_.VecData(ksup) + grid_->numProcCol,
true);
return ((isSendToCrossDiagonal_(
MYCOL(grid_),ksup) &&
MYROW(grid_)==
PROW(ksup,grid_))?count-1:count); }
753 Int
CountRecvFromCrossDiagonal(Int ksup) { Int count= std::count (isRecvFromCrossDiagonal_.VecData(ksup), isRecvFromCrossDiagonal_.VecData(ksup) + grid_->numProcRow,
true);
return ((isRecvFromCrossDiagonal_(
MYROW(grid_),ksup) &&
MYCOL(grid_)==
PCOL(ksup,grid_))?count-1:count); }
760 void GetEtree(std::vector<Int> & etree_supno );
944 void GetColumn ( Int colIdx,
NumVec<T>& col );
999 void CopyLU(
const PMatrix & C);
1000 inline int IdxToTag(Int lidx, Int tag) {
return SELINV_TAG_COUNT*(lidx)+(tag);}
1012 #endif //_PEXSI_PSELINV_HPP_
virtual void PreSelInv()
PreSelInv prepares the structure in L_ and U_ so that SelInv only involves matrix-matrix multiplicati...
Definition: pselinv_impl.hpp:3594
A thin interface for passing parameters to set the Factorization options.
Definition: pselinv.hpp:115
Int blockIdx
Block index (supernodal index)
Definition: pselinv.hpp:248
void PMatrixToDistSparseMatrix(DistSparseMatrix< T > &A)
PMatrixToDistSparseMatrix converts the PMatrix into a distributed compressed sparse column matrix for...
Definition: pselinv_impl.hpp:4083
std::vector< LBlock< T > > & L(Int jLocal)
L returns the vector of nonzero L blocks for the local block column jLocal.
Definition: pselinv.hpp:724
SuperNodeType describes mapping between supernode and column, the permutation information, and potentially the elimination tree (not implemented here).
Definition: pselinv.hpp:177
Interface with SuperLU_Dist (version 3.0 and later)
void GetNegativeInertia(Real &inertia)
GetNegativeInertia computes the negative inertia of a PMatrix. This can be used to estimate e...
Int PROW(Int bnum, const GridType *g)
PROW returns the processor row that the bnum-th block (supernode) belongs to.
Definition: pselinv.hpp:304
Thin interface to LAPACK.
Int numRow
Number of nonzero rows.
Definition: pselinv.hpp:199
void UnpackData(SuperNodeBufferType &snode, std::vector< LBlock< T > > &LcolRecv, std::vector< UBlock< T > > &UrowRecv)
UnpackData.
Definition: pselinv_impl.hpp:1060
Int maxPipelineDepth
The maximum pipeline depth.
Definition: pselinv.hpp:104
Int MYPROC(const GridType *g)
MYPROC returns the current processor rank.
Definition: pselinv.hpp:291
Int NumLocalBlockCol() const
NumLocalBlockCol returns the total number of block columns.
Definition: pselinv.hpp:695
Int PCOL(Int bnum, const GridType *g)
PCOL returns the processor column that the bnum-th block (supernode) belongs to.
Definition: pselinv.hpp:309
Int LBi(Int bnum, const GridType *g)
LBi returns the local block number on the processor at processor row PROW( bnum, g )...
Definition: pselinv.hpp:319
Int SuperSize(Int bnum, const SuperNodeType *s)
SuperSize returns the size of the block bnum.
Definition: pselinv.hpp:360
Int LBj(Int bnum, const GridType *g)
LBj returns the local block number on the processor at processor column PCOL( bnum, g ).
Definition: pselinv.hpp:324
Int GBj(Int jLocal, const GridType *g)
GBj returns the global block number from a local block number in the column direction.
Definition: pselinv.hpp:334
Int numCol
Number of nonzero columns.
Definition: pselinv.hpp:202
static PMatrix< T > * Create(const GridType *pGridType, const SuperNodeType *pSuper, const PSelInvOptions *pSelInvOpt, const FactorizationOptions *pFactOpt)
Create is a factory method which returns a pointer either to a new PMatrix or to a new PMatrixUnsym d...
Definition: pselinv_impl.hpp:5057
Int NumCol(const SuperNodeType *s)
NumCol returns the total number of columns for a supernodal partiiton.
Definition: pselinv.hpp:369
Definition: pselinv.hpp:615
Int CountRecvFromCrossDiagonal(Int ksup)
CountRecvFromCrossDiagonal returns the number of cross diagonal processors with which current process...
Definition: pselinv.hpp:753
void GetDiagonal(NumVec< T > &diag)
GetDiagonal extracts the diagonal elements of the PMatrix.
Definition: pselinv_impl.hpp:3961
std::vector< std::vector< int > > & WorkingSet()
WorkingSet returns the ordered list of supernodes which could be done in parallel.
Definition: pselinv.hpp:732
Implementation of the parallel SelInv.
void GetWorkSet(std::vector< Int > &snodeEtree, std::vector< std::vector< Int > > &WSet)
GetWorkSet.
Definition: pselinv_impl.hpp:1227
Int FirstBlockRow(Int bnum, const SuperNodeType *s)
FirstBlockRow returns the first column of a block bnum. Note: the functionality of FirstBlockRow is e...
Definition: pselinv.hpp:355
Definition: pselinv.hpp:83
void GetEtree(std::vector< Int > &etree_supno)
GetEtree computes the supernodal elimination tree to be used later in the pipelined selected inversio...
Definition: pselinv_impl.hpp:1166
const GridType * Grid() const
Grid returns the GridType structure of the current PMatrix.
Definition: pselinv.hpp:716
LBlock stores a nonzero block in the lower triangular part or the diagonal part in PSelInv...
Definition: pselinv.hpp:193
Int PNUM(Int i, Int j, const GridType *g)
PNUM returns the processor rank that the bnum-th block (supernode) belongs to.
Definition: pselinv.hpp:314
virtual void ConstructCommunicationPattern()
ConstructCommunicationPattern constructs the communication pattern to be used later in the selected i...
Definition: pselinv_impl.hpp:2603
Sparse matrix and Distributed sparse matrix in compressed column format.
void ConstructCommunicationPattern_P2p()
ConstructCommunicationPattern_P2p constructs the communication pattern to be used later in the select...
Definition: pselinv_impl.hpp:2611
Int GBi(Int iLocal, const GridType *g)
GBi returns the global block number from a local block number in the row direction.
Definition: pselinv.hpp:329
GridType is the PSelInv way of defining the grid.
Definition: pselinv.hpp:140
void SelInvIntra_P2p(Int lidx, Int &rank)
SelInvIntra_P2p.
Definition: pselinv_impl.hpp:1465
Interface with MPI to facilitate communication.
Int MYCOL(const GridType *g)
MYCOL returns my processor column.
Definition: pselinv.hpp:299
Int CountSendToCrossDiagonal(Int ksup)
CountSendToCrossDiagonal returns the number of cross diagonal processors with which current processor...
Definition: pselinv.hpp:749
Int NumLocalBlockRow() const
NumLocalBlockRow returns the total number of block rows.
Definition: pselinv.hpp:698
Various utility subroutines.
const SuperNodeType * SuperNode() const
SuperNode returns the supernodal partition of the current PMatrix.
Definition: pselinv.hpp:720
void PMatrixToDistSparseMatrix_OLD(const DistSparseMatrix< T > &A, DistSparseMatrix< T > &B)
PMatrixToDistSparseMatrix_OLD converts the PMatrix into a distributed compressed sparse column matrix...
Definition: pselinv_impl.hpp:4355
IntNumVec rows
Dimension numRow * 1, index (0-based) for the number of nonzero rows.
Definition: pselinv.hpp:205
Int numCol
Number of nonzero columns.
Definition: pselinv.hpp:254
UBlock stores a nonzero block in the upper triangular part in PSelInv.
Definition: pselinv.hpp:245
std::vector< UBlock< T > > & U(Int iLocal)
U returns the vector of nonzero U blocks for the local block row iLocal.
Definition: pselinv.hpp:728
Int FirstBlockCol(Int bnum, const SuperNodeType *s)
FirstBlockCol returns the first column of a block bnum.
Definition: pselinv.hpp:348
Int NnzLocal()
NnzLocal computes the number of nonzero elements (L and U) saved locally.
Definition: pselinv_impl.hpp:4965
Int blockIdx
Block index (supernodal index)
Definition: pselinv.hpp:196
PMatrix contains the main data structure and the computational routine for the parallel selected inve...
Definition: pselinv.hpp:542
void SendRecvCD_UpdateU(std::vector< SuperNodeBufferType > &arrSuperNodes, Int stepSuper)
SendRecvCD_UpdateU.
Definition: pselinv_impl.hpp:828
Int BlockIdx(Int i, const SuperNodeType *s)
BlockIdx returns the block index of a column i.
Definition: pselinv.hpp:343
Int numRow
Number of nonzero rows.
Definition: pselinv.hpp:251
Int CountSendToRight(Int ksup)
CountSendToRight returns the number of processors to the right of current processor with which it has...
Definition: pselinv.hpp:737
Int CountSendToBelow(Int ksup)
CountSendToBelow returns the number of processors below current processor with which it has to commun...
Definition: pselinv.hpp:741
Int CEILING(Int a, Int b)
CEILING is used for computing the storage space for local number of blocks.
Definition: pselinv.hpp:339
NumMat< T > nzval
Dimension numRow * numCol, nonzero elements.
Definition: pselinv.hpp:260
Int NumSuper(const SuperNodeType *s)
NumSuper returns the total number of supernodes.
Definition: pselinv.hpp:364
void SelInv_P2p()
Point-to-point version of the selected inversion.
Definition: pselinv_impl.hpp:3537
Int CountRecvFromBelow(Int ksup)
CountRecvFromBelow returns the number of processors below the current processor from which it receive...
Definition: pselinv.hpp:745
Int NumBlockL(Int jLocal) const
NumBlockL returns the number of nonzero L blocks for the local block column jLocal.
Definition: pselinv.hpp:709
NumMat< T > nzval
Dimension numRow * numCol, nonzero elements.
Definition: pselinv.hpp:209
A thin interface for passing parameters to set the PSelInv options.
Definition: pselinv.hpp:102
IntNumVec cols
Dimension numCol * 1, index (0-based) for the number of nonzero rows.
Definition: pselinv.hpp:257
Int NumBlockU(Int iLocal) const
NumBlockU returns the number of nonzero U blocks for the local block row iLocal.
Definition: pselinv.hpp:713
virtual void SelInv()
SelInv is the main function for the selected inversion.
Definition: pselinv_impl.hpp:3484
LongInt Nnz()
Nnz computes the total number of nonzero elements in the PMatrix.
Definition: pselinv_impl.hpp:4990
void SelInv_lookup_indexes(SuperNodeBufferType &snode, std::vector< LBlock< T > > &LcolRecv, std::vector< UBlock< T > > &UrowRecv, NumMat< T > &AinvBuf, NumMat< T > &UBuf)
SelInv_lookup_indexes.
Definition: pselinv_impl.hpp:471
void ComputeDiagUpdate(SuperNodeBufferType &snode)
ComputeDiagUpdate.
Definition: pselinv_impl.hpp:1126
DistSparseMatrix describes a Sparse matrix in the compressed sparse column format (CSC) and distribut...
Definition: sparse_matrix.hpp:91
PMatrixUnsym contains the main data structure and the computational routine for the parallel selected...
Definition: pselinv.hpp:1003
Int MYROW(const GridType *g)
MYROW returns my processor row.
Definition: pselinv.hpp:295