46 #ifndef XPETRA_BLOCKEDCRSMATRIX_HPP
47 #define XPETRA_BLOCKEDCRSMATRIX_HPP
57 #include "Xpetra_MapFactory.hpp"
58 #include "Xpetra_MultiVector.hpp"
59 #include "Xpetra_BlockedMultiVector.hpp"
60 #include "Xpetra_MultiVectorFactory.hpp"
61 #include "Xpetra_BlockedVector.hpp"
66 #include "Xpetra_MapExtractor.hpp"
70 #include "Xpetra_CrsMatrixWrap.hpp"
72 #ifdef HAVE_XPETRA_THYRA
73 #include <Thyra_ProductVectorSpaceBase.hpp>
74 #include <Thyra_VectorSpaceBase.hpp>
75 #include <Thyra_LinearOpBase.hpp>
76 #include <Thyra_BlockedLinearOpBase.hpp>
77 #include <Thyra_PhysicallyBlockedLinearOpBase.hpp>
81 #include "Xpetra_VectorFactory.hpp"
92 template <
class Scalar,
97 public Matrix<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
105 #undef XPETRA_BLOCKEDCRSMATRIX_SHORT
131 for (
size_t r = 0; r <
Rows(); ++r)
132 for (
size_t c = 0; c <
Cols(); ++c)
158 for (
size_t r = 0; r <
Rows(); ++r)
159 for (
size_t c = 0; c <
Cols(); ++c)
166 #ifdef HAVE_XPETRA_THYRA
180 int numRangeBlocks = productRangeSpace->numBlocks();
181 int numDomainBlocks = productDomainSpace->numBlocks();
184 std::vector<Teuchos::RCP<const Map> > subRangeMaps(numRangeBlocks);
185 for (
size_t r=0; r<Teuchos::as<size_t>(numRangeBlocks); ++r) {
186 for (
size_t c=0; c<Teuchos::as<size_t>(numDomainBlocks); ++c) {
187 if (thyraOp->blockExists(r,c)) {
192 subRangeMaps[r] = xop->getRangeMap();
202 bool bRangeUseThyraStyleNumbering =
false;
203 size_t numAllElements = 0;
204 for(
size_t v = 0; v < subRangeMaps.size(); ++v) {
205 numAllElements += subRangeMaps[v]->getGlobalNumElements();
207 if ( fullRangeMap->getGlobalNumElements() != numAllElements) bRangeUseThyraStyleNumbering =
true;
211 std::vector<Teuchos::RCP<const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > > subDomainMaps(numDomainBlocks);
212 for (
size_t c=0; c<Teuchos::as<size_t>(numDomainBlocks); ++c) {
213 for (
size_t r=0; r<Teuchos::as<size_t>(numRangeBlocks); ++r) {
214 if (thyraOp->blockExists(r,c)) {
219 subDomainMaps[c] = xop->getDomainMap();
226 bool bDomainUseThyraStyleNumbering =
false;
228 for(
size_t v = 0; v < subDomainMaps.size(); ++v) {
229 numAllElements += subDomainMaps[v]->getGlobalNumElements();
231 if (fullDomainMap->getGlobalNumElements() != numAllElements) bDomainUseThyraStyleNumbering =
true;
240 for (
size_t r = 0; r <
Rows(); ++r) {
241 for (
size_t c = 0; c <
Cols(); ++c) {
242 if(thyraOp->blockExists(r,c)) {
274 std::vector<GlobalOrdinal> gids;
275 for(
size_t tt = 0; tt<subMaps.size(); ++tt) {
279 gids.insert(gids.end(), subMapGids.
begin(), subMapGids.
end());
281 size_t myNumElements = subMap->getNodeNumElements();
282 for(LocalOrdinal l = 0; l < Teuchos::as<LocalOrdinal>(myNumElements); ++l) {
283 GlobalOrdinal gid = subMap->getGlobalElement(l);
294 std::sort(gids.begin(), gids.end());
295 gids.erase(std::unique(gids.begin(), gids.end()), gids.end());
342 getMatrix(0,0)->insertGlobalValues(globalRow, cols, vals);
362 getMatrix(0,0)->insertLocalValues(localRow, cols, vals);
369 XPETRA_MONITOR(
"XpetraBlockedCrsMatrix::removeEmptyProcessesInPlace");
371 getMatrix(0,0)->removeEmptyProcessesInPlace(newMap);
391 getMatrix(0,0)->replaceGlobalValues(globalRow,cols,vals);
407 getMatrix(0,0)->replaceLocalValues(localRow,cols,vals);
416 for (
size_t row = 0; row <
Rows(); row++) {
417 for (
size_t col = 0; col <
Cols(); col++) {
419 getMatrix(row,col)->setAllToScalar(alpha);
428 for (
size_t row = 0; row <
Rows(); row++) {
429 for (
size_t col = 0; col <
Cols(); col++) {
451 for (
size_t row = 0; row <
Rows(); row++) {
452 for (
size_t col = 0; col <
Cols(); col++) {
468 getMatrix(0,0)->fillComplete(domainMap, rangeMap, params);
492 for (
size_t r = 0; r <
Rows(); ++r)
493 for (
size_t c = 0; c <
Cols(); ++c) {
497 if (Ablock != Teuchos::null && !Ablock->isFillComplete())
505 fullrowmap_ =
MapFactory::Build(rangeMap()->lib(), rangeMap()->getGlobalNumElements(), rangeMap()->getNodeElementList(), rangeMap()->getIndexBase(), rangeMap()->getComm());
508 fullcolmap_ = Teuchos::null;
510 std::vector<GO> colmapentries;
511 for (
size_t c = 0; c <
Cols(); ++c) {
514 for (
size_t r = 0; r <
Rows(); ++r) {
517 if (Ablock != Teuchos::null) {
520 copy(colElements.
getRawPtr(), colElements.
getRawPtr() + colElements.
size(), inserter(colset, colset.begin()));
525 colmapentries.reserve(colmapentries.size() + colset.size());
526 copy(colset.begin(), colset.end(), back_inserter(colmapentries));
527 sort(colmapentries.begin(), colmapentries.end());
528 typename std::vector<GO>::iterator gendLocation;
529 gendLocation = std::unique(colmapentries.begin(), colmapentries.end());
530 colmapentries.erase(gendLocation,colmapentries.end());
534 size_t numGlobalElements = 0;
535 Teuchos::reduceAll(*(rangeMap->getComm()), Teuchos::REDUCE_SUM, colmapentries.size(), Teuchos::outArg(numGlobalElements));
539 fullcolmap_ =
MapFactory::Build(rangeMap->lib(), numGlobalElements, aView, 0, rangeMap->getComm());
552 for (
size_t row = 0; row <
Rows(); row++)
553 for (
size_t col = 0; col <
Cols(); col++)
555 globalNumRows +=
getMatrix(row,col)->getGlobalNumRows();
559 return globalNumRows;
569 for (
size_t col = 0; col <
Cols(); col++)
570 for (
size_t row = 0; row <
Rows(); row++)
572 globalNumCols +=
getMatrix(row,col)->getGlobalNumCols();
576 return globalNumCols;
584 for (
size_t row = 0; row <
Rows(); ++row)
585 for (
size_t col = 0; col <
Cols(); col++)
587 nodeNumRows +=
getMatrix(row,col)->getNodeNumRows();
599 for (
size_t row = 0; row <
Rows(); ++row)
600 for (
size_t col = 0; col <
Cols(); ++col)
602 globalNumEntries +=
getMatrix(row,col)->getGlobalNumEntries();
604 return globalNumEntries;
612 for (
size_t row = 0; row <
Rows(); ++row)
613 for (
size_t col = 0; col <
Cols(); ++col)
615 nodeNumEntries +=
getMatrix(row,col)->getNodeNumEntries();
617 return nodeNumEntries;
623 XPETRA_MONITOR(
"XpetraBlockedCrsMatrix::getNumEntriesInLocalRow");
624 GlobalOrdinal gid = this->
getRowMap()->getGlobalElement(localRow);
627 size_t numEntriesInLocalRow = 0;
628 for (
size_t col = 0; col <
Cols(); ++col)
630 numEntriesInLocalRow +=
getMatrix(row,col)->getNumEntriesInLocalRow(lid);
631 return numEntriesInLocalRow;
637 XPETRA_MONITOR(
"XpetraBlockedCrsMatrix::getNumEntriesInGlobalRow");
639 size_t numEntriesInGlobalRow = 0;
640 for (
size_t col = 0; col <
Cols(); ++col)
642 numEntriesInGlobalRow +=
getMatrix(row,col)->getNumEntriesInGlobalRow(globalRow);
643 return numEntriesInGlobalRow;
650 XPETRA_MONITOR(
"XpetraBlockedCrsMatrix::getGlobalMaxNumRowEntries");
653 for (
size_t row = 0; row <
Rows(); row++) {
655 for (
size_t col = 0; col <
Cols(); col++) {
657 globalMaxEntriesBlockRows +=
getMatrix(row,col)->getGlobalMaxNumRowEntries();
660 if(globalMaxEntriesBlockRows > globalMaxEntries)
661 globalMaxEntries = globalMaxEntriesBlockRows;
663 return globalMaxEntries;
670 XPETRA_MONITOR(
"XpetraBlockedCrsMatrix::getNodeMaxNumRowEntries");
671 size_t localMaxEntries = 0;
673 for (
size_t row = 0; row <
Rows(); row++) {
674 size_t localMaxEntriesBlockRows = 0;
675 for (
size_t col = 0; col <
Cols(); col++) {
677 localMaxEntriesBlockRows +=
getMatrix(row,col)->getNodeMaxNumRowEntries();
680 if(localMaxEntriesBlockRows > localMaxEntries)
681 localMaxEntries = localMaxEntriesBlockRows;
683 return localMaxEntries;
692 for (
size_t i = 0; i <
blocks_.size(); ++i)
704 for (
size_t i = 0; i <
blocks_.size(); i++)
713 for (
size_t i = 0; i <
blocks_.size(); i++)
737 size_t &NumEntries)
const {
740 getMatrix(0,0)->getLocalRowCopy(LocalRow, Indices, Values, NumEntries);
759 getMatrix(0,0)->getGlobalRowView(GlobalRow, indices, values);
778 getMatrix(0,0)->getLocalRowView(LocalRow, indices, values);
782 GlobalOrdinal gid = this->
getRowMap()->getGlobalElement(LocalRow);
807 rm->getLocalDiagCopy(diag);
814 "BlockedCrsMatrix::getLocalDiagCopy(): the number of blocks in diag differ from the number of blocks in this operator." );
818 for (
size_t row = 0; row <
Rows(); row++) {
822 rm->getLocalDiagCopy(*rv);
823 bdiag->setMultiVector(row,rv,bdiag->getBlockedMap()->getThyraMode());
841 for (
size_t col = 0; col <
Cols(); ++col) {
851 "BlockedCrsMatrix::leftScale(): the number of blocks in diag differ from the number of blocks in this operator." );
853 for (
size_t row = 0; row <
Rows(); row++) {
857 for (
size_t col = 0; col <
Cols(); ++col) {
860 rm->leftScale(*rscale);
879 for (
size_t row = 0; row <
Rows(); ++row) {
889 "BlockedCrsMatrix::rightScale(): the number of blocks in diag differ from the number of blocks in this operator." );
891 for (
size_t col = 0; col <
Cols(); ++col) {
895 for (
size_t row = 0; row <
Rows(); row++) {
898 rm->rightScale(*rscale);
909 for (
size_t col = 0; col <
Cols(); ++col) {
910 for (
size_t row = 0; row <
Rows(); ++row) {
968 "apply() only supports the following modes: NO_TRANS and TRANS." );
977 bool bBlockedX = (refbX != Teuchos::null) ?
true :
false;
989 for (
size_t row = 0; row <
Rows(); row++) {
991 for (
size_t col = 0; col <
Cols(); col++) {
1001 bool bBlockedSubMatrix = Teuchos::rcp_dynamic_cast<BlockedCrsMatrix>(Ablock) == Teuchos::null ? false :
true;
1013 Ablock->apply(*Xblock, *tmpYblock);
1015 Yblock->update(one, *tmpYblock, one);
1022 for (
size_t col = 0; col <
Cols(); col++) {
1025 for (
size_t row = 0; row<
Rows(); row++) {
1033 bool bBlockedSubMatrix = Teuchos::rcp_dynamic_cast<BlockedCrsMatrix>(Ablock) == Teuchos::null ? false :
true;
1043 Yblock->update(one, *tmpYblock, one);
1048 Y.
update(alpha, *tmpY, beta);
1113 "apply() only supports the following modes: NO_TRANS and TRANS." );
1121 bool bBlockedX = (refbX != Teuchos::null) ?
true :
false;
1131 for (
size_t col = 0; col <
Cols(); col++) {
1141 bool bBlockedSubMatrix = Teuchos::rcp_dynamic_cast<BlockedCrsMatrix>(Ablock) == Teuchos::null ? false :
true;
1153 Ablock->apply(*Xblock, *tmpYblock);
1155 Yblock->update(one, *tmpYblock, one);
1161 Y.
update(alpha, *tmpY, beta);
1184 getMatrix(0,0)->doImport(source, importer, CM);
1194 getMatrix(0,0)->doExport(dest, importer, CM);
1204 getMatrix(0,0)->doImport(source, exporter, CM);
1214 getMatrix(0,0)->doExport(dest, exporter, CM);
1226 std::string
description()
const {
return "Xpetra_BlockedCrsMatrix.description()"; }
1230 out <<
"Xpetra::BlockedCrsMatrix: " <<
Rows() <<
" x " <<
Cols() << std::endl;
1233 out <<
"BlockMatrix is fillComplete" << std::endl;
1246 out <<
"BlockMatrix is NOT fillComplete" << std::endl;
1249 for (
size_t r = 0; r <
Rows(); ++r)
1250 for (
size_t c = 0; c <
Cols(); ++c) {
1252 out <<
"Block(" << r <<
"," << c <<
")" << std::endl;
1253 getMatrix(r,c)->describe(out,verbLevel);
1254 }
else out <<
"Block(" << r <<
"," << c <<
") = null" << std::endl;
1262 for (
size_t r = 0; r <
Rows(); ++r)
1263 for (
size_t c = 0; c <
Cols(); ++c) {
1265 std::ostringstream oss; oss<< objectLabel <<
"(" << r <<
"," << c <<
")";
1266 getMatrix(r,c)->setObjectLabel(oss.str());
1275 if (
Rows() == 1 &&
Cols () == 1)
return true;
1309 if (bmat == Teuchos::null)
return mat;
1310 return bmat->getCrsMatrix();
1316 size_t row =
Rows()+1, col =
Cols()+1;
1317 for (
size_t r = 0; r <
Rows(); ++r)
1318 for(
size_t c = 0; c <
Cols(); ++c)
1327 if (bmat == Teuchos::null)
return mm;
1328 return bmat->getInnermostCrsMatrix();
1363 using Teuchos::rcp_dynamic_cast;
1367 "BlockedCrsMatrix::Merge: only implemented for Xpetra-style or Thyra-style numbering. No mixup allowed!" );
1370 "BlockedCrsMatrix::Merge: BlockMatrix must be fill-completed." );
1374 for (LocalOrdinal lclRow = 0; lclRow < lclNumRows; ++lclRow)
1381 for (
size_t i = 0; i <
Rows(); i++) {
1382 for (
size_t j = 0; j <
Cols(); j++) {
1388 if (bMat != Teuchos::null) mat = bMat->Merge();
1390 bMat = Teuchos::rcp_dynamic_cast<const BlockedCrsMatrix>(mat);
1392 "BlockedCrsMatrix::Merge: Merging of blocked sub-operators failed?!" );
1395 if(mat->getNodeNumEntries() == 0)
continue;
1397 this->
Add(*mat, one, *sparse, one);
1403 for (
size_t i = 0; i <
Rows(); i++) {
1404 for (
size_t j = 0; j <
Cols(); j++) {
1409 if (bMat != Teuchos::null) mat = bMat->Merge();
1411 bMat = Teuchos::rcp_dynamic_cast<const BlockedCrsMatrix>(mat);
1413 "BlockedCrsMatrix::Merge: Merging of blocked sub-operators failed?!" );
1437 if(mat->getNodeNumEntries() == 0)
continue;
1439 size_t maxNumEntries = mat->getNodeMaxNumRowEntries();
1447 for (
size_t k = 0; k < mat->getNodeNumRows(); k++) {
1448 GlobalOrdinal rowTGID = trowMap->getGlobalElement(k);
1449 crsMat->getCrsMatrix()->getGlobalRowCopy(rowTGID, inds(), vals(), numEntries);
1452 for (
size_t l = 0; l < numEntries; ++l) {
1453 LocalOrdinal lid = tcolMap->getLocalElement(inds[l]);
1454 inds2[l] = xcolMap->getGlobalElement(lid);
1457 GlobalOrdinal rowXGID = xrowMap->getGlobalElement(k);
1458 sparse->insertGlobalValues(
1459 rowXGID, inds2(0, numEntries),
1460 vals(0, numEntries));
1470 "BlockedCrsMatrix::Merge: Local number of entries of merged matrix does not coincide with local number of entries of blocked operator." );
1473 "BlockedCrsMatrix::Merge: Global number of entries of merged matrix does not coincide with global number of entries of blocked operator." );
1479 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
1480 typedef typename CrsMatrix::local_matrix_type local_matrix_type;
1483 local_matrix_type getLocalMatrix ()
const {
1485 return getMatrix(0,0)->getLocalMatrix();
1491 #ifdef HAVE_XPETRA_THYRA
1494 Xpetra::ThyraUtils<Scalar,LO,GO,Node>::toThyra(Teuchos::rcpFromRef(*
this));
1498 Teuchos::rcp_dynamic_cast<Thyra::BlockedLinearOpBase<Scalar> >(thOp);
1509 R.
update(STS::one(),B,STS::zero());
1532 "Matrix A is not completed");
1541 if (scalarA == zero)
1547 "BlockedCrsMatrix::Add: matrix A must be of type CrsMatrixWrap.");
1550 size_t maxNumEntries = crsA->getNodeMaxNumRowEntries();
1560 for (
size_t i = 0; i < crsA->getNodeNumRows(); i++) {
1561 GO row = rowGIDs[i];
1562 crsA->getGlobalRowCopy(row, inds(), vals(), numEntries);
1565 for (
size_t j = 0; j < numEntries; ++j)
1593 #ifdef HAVE_XPETRA_THYRA
1603 #define XPETRA_BLOCKEDCRSMATRIX_SHORT
#define XPETRA_MONITOR(funcName)
#define XPETRA_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
static const EVerbosityLevel verbLevel_default
Teuchos::RCP< const MapExtractor > domainmaps_
void doImport(const Matrix &source, const Export &exporter, CombineMode CM)
Import (using an Exporter).
RCP< const CrsGraph > getCrsGraph() const
Returns the CrsGraph associated with this matrix.
void getGlobalRowView(GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &indices, ArrayView< const Scalar > &values) const
Extract a const, non-persisting view of global indices in a specified row of the matrix.
bool isLocallyIndexed() const
If matrix indices of all matrix blocks are in the local range, this function returns true....
Teuchos::RCP< const MapExtractor > rangemaps_
virtual ScalarTraits< Scalar >::magnitudeType getFrobeniusNorm() const
Get Frobenius norm of the matrix.
void setMatrix(size_t r, size_t c, Teuchos::RCP< Matrix > mat)
set matrix block
virtual size_t Rows() const
number of row blocks
RCP< const Map > getDomainMap(size_t i) const
Returns the Map associated with the i'th block domain of this operator.
void insertGlobalValues(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals)
Insert matrix entries, using global IDs.
RCP< const BlockedMap > getBlockedDomainMap() const
Returns the BlockedMap associated with the domain of this operator.
Teuchos::RCP< Matrix > Merge() const
merge BlockedCrsMatrix blocks in a CrsMatrix
void fillComplete(const RCP< const Map > &domainMap, const RCP< const Map > &rangeMap, const RCP< ParameterList > ¶ms=null)
Signal that data entry is complete.
bool bDomainThyraMode_
boolean flag, which is true, if BlockedCrsMatrix has been created using Thyra-style numbering for sub...
size_t getNumEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of entries on this node in the specified local row.
Teuchos::RCP< Matrix > getInnermostCrsMatrix()
helper routine recursively returns the first inner-most non-null matrix block from a (nested) blocked...
RCP< const MapExtractor > getDomainMapExtractor() const
Returns map extractor for domain map.
BlockedCrsMatrix(const Teuchos::RCP< const BlockedMap > &rangeMaps, const Teuchos::RCP< const BlockedMap > &domainMaps, size_t npr)
Constructor.
virtual void bgs_apply(const MultiVector &X, MultiVector &Y, size_t row, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=ScalarTraits< Scalar >::one(), Scalar beta=ScalarTraits< Scalar >::zero()) const
Special multiplication routine (for BGS/Jacobi smoother)
void doExport(const Matrix &dest, const Export &exporter, CombineMode CM)
Export (using an Importer).
bool hasCrsGraph() const
Supports the getCrsGraph() call.
BlockedCrsMatrix(Teuchos::RCP< const MapExtractor > &rangeMaps, Teuchos::RCP< const MapExtractor > &domainMaps, size_t npr)
Constructor.
RCP< const BlockedMap > getBlockedRangeMap() const
Returns the BlockedMap associated with the range of this operator.
std::vector< Teuchos::RCP< Matrix > > blocks_
virtual ~BlockedCrsMatrix()
Destructor.
virtual void getLocalRowCopy(LocalOrdinal LocalRow, const ArrayView< LocalOrdinal > &Indices, const ArrayView< Scalar > &Values, size_t &NumEntries) const
Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calli...
size_t getNodeNumRows() const
Returns the number of matrix rows owned on the calling node.
RCP< const Map > getDomainMap(size_t i, bool bThyraMode) const
Returns the Map associated with the i'th block domain of this operator.
void replaceGlobalValues(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals)
Replace matrix entries, using global IDs.
void getLocalRowView(LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices, ArrayView< const Scalar > &values) const
Extract a const, non-persisting view of local indices in a specified row of the matrix.
bool isFillComplete() const
Returns true if fillComplete() has been called and the matrix is in compute mode.
GlobalOrdinal global_ordinal_type
void leftScale(const Vector &x)
Left scale matrix using the given vector entries.
virtual void setAllToScalar(const Scalar &alpha)
Set all matrix entries equal to scalar.
RCP< const Map > getDomainMap() const
Returns the Map associated with the domain of this operator.
void replaceLocalValues(LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &cols, const ArrayView< const Scalar > &vals)
Replace matrix entries, using local IDs.
void doImport(const Matrix &source, const Import &importer, CombineMode CM)
Import.
global_size_t getGlobalNumCols() const
Returns the number of global columns in the matrix.
void residual(const MultiVector &X, const MultiVector &B, MultiVector &R) const
Compute a residual R = B - (*this) * X.
const Teuchos::RCP< const Map > getMap() const
Implements DistObject interface.
RCP< const Map > getRangeMap() const
Returns the Map associated with the range of this operator.
LocalOrdinal local_ordinal_type
void Add(const Matrix &A, const Scalar scalarA, Matrix &B, const Scalar scalarB) const
Add a Xpetra::CrsMatrix to another: B = B*scalarB + A*scalarA.
bool bRangeThyraMode_
boolean flag, which is true, if BlockedCrsMatrix has been created using Thyra-style numbering for sub...
void scale(const Scalar &alpha)
Scale the current values of a matrix, this = alpha*this.
virtual bool haveGlobalConstants() const
Returns true if globalConstants have been computed; false otherwise.
virtual void apply(const MultiVector &X, MultiVector &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=ScalarTraits< Scalar >::one(), Scalar beta=ScalarTraits< Scalar >::zero()) const
Computes the sparse matrix-multivector multiplication.
Teuchos::RCP< Matrix > getCrsMatrix() const
return unwrap 1x1 blocked operators
size_t getNumEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of entries in the specified (locally owned) global row.
RCP< const Map > getRangeMap(size_t i, bool bThyraMode) const
Returns the Map associated with the i'th block range of this operator.
void insertLocalValues(LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &cols, const ArrayView< const Scalar > &vals)
Insert matrix entries, using local IDs.
RCP< const Map > getFullRangeMap() const
Returns the Map associated with the full range of this operator.
RCP< const MapExtractor > getRangeMapExtractor() const
Returns map extractor class for range map.
void rightScale(const Vector &x)
Right scale matrix using the given vector entries.
void setObjectLabel(const std::string &objectLabel)
void fillComplete(const RCP< ParameterList > ¶ms=null)
Signal that data entry is complete.
size_t getNodeNumEntries() const
Returns the local number of entries in this matrix.
size_t getNodeMaxNumRowEntries() const
Returns the maximum number of entries across all rows/columns on this node.
void resumeFill(const RCP< ParameterList > ¶ms=null)
size_t getGlobalMaxNumRowEntries() const
Returns the maximum number of entries across all rows/columns on all nodes.
virtual bool isDiagonal() const
void getLocalDiagCopy(Vector &diag) const
Get a copy of the diagonal entries owned by this node, with local row indices.
bool isGloballyIndexed() const
If matrix indices are in the global range, this function returns true. Otherwise, this function retur...
global_size_t getGlobalNumRows() const
Returns the number of global rows.
virtual size_t Cols() const
number of column blocks
Teuchos::RCP< Matrix > getMatrix(size_t r, size_t c) const
return block (r,c)
global_size_t getGlobalNumEntries() const
Returns the global number of entries in this matrix.
RCP< const Map > getRangeMap(size_t i) const
Returns the Map associated with the i'th block range of this operator.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print the object with some verbosity level to an FancyOStream object.
void removeEmptyProcessesInPlace(const Teuchos::RCP< const Map > &newMap)
RCP< const Map > getFullDomainMap() const
Returns the Map associated with the full domain of this operator.
void doExport(const Matrix &dest, const Import &importer, CombineMode CM)
Export.
std::string description() const
Return a simple one-line description of this object.
Concrete implementation of Xpetra::Matrix.
virtual Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getMap() const =0
The Map describing the parallel distribution of this object.
Exception indicating invalid cast attempted.
Exception throws to report incompatible objects (like maps).
Exception throws when you call an unimplemented method of Xpetra.
Exception throws to report errors in the internal logical of the program.
static Teuchos::RCP< Map< LocalOrdinal, GlobalOrdinal, Node > > Build(UnderlyingLib lib, global_size_t numGlobalElements, GlobalOrdinal indexBase, const Teuchos::RCP< const Teuchos::Comm< int >> &comm, LocalGlobal lg=Xpetra::GloballyDistributed)
Map constructor with Xpetra-defined contiguous uniform distribution.
static Teuchos::RCP< Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > transformThyra2XpetraGIDs(const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &input, const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &nonOvlInput, const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &nonOvlReferenceInput)
replace set of global ids by new global ids
static RCP< Matrix > Build(const RCP< const Map > &rowMap)
Xpetra-specific matrix class.
void CreateView(viewLabel_t viewLabel, const RCP< const Map > &rowMap, const RCP< const Map > &colMap)
viewLabel_t currentViewLabel_
const viewLabel_t & GetDefaultViewLabel() const
virtual bool isFillComplete() const =0
Returns true if fillComplete() has been called and the matrix is in compute mode.
viewLabel_t defaultViewLabel_
virtual const RCP< const Map > & getRowMap() const
Returns the Map that describes the row distribution in this matrix.
virtual void scale(const Scalar &alpha)=0
Scale the current values of a matrix, this = alpha*this.
virtual void insertGlobalValues(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals)=0
Insert matrix entries, using global IDs.
static Teuchos::RCP< MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Build(const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node >> &map, size_t NumVectors, bool zeroOut=true)
Constructor specifying the number of non-zeros for all rows.
virtual size_t getNumVectors() const =0
Number of columns in the multivector.
virtual void update(const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta)=0
Update multi-vector values with scaled values of A, this = beta*this + alpha*A.
static Teuchos::RCP< Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Build(const Teuchos::RCP< const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >> &map, bool zeroOut=true)
Constructor specifying the number of non-zeros for all rows.
#define TEUCHOS_ASSERT(assertion_test)
#define TEUCHOS_TEST_FOR_EXCEPT(throw_exception_test)
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
bool is_null(const std::shared_ptr< T > &p)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
size_t global_size_t
Global size_t object.
RCP< const CrsGraph< int, GlobalOrdinal, Node > > toXpetra(const Epetra_CrsGraph &g)
CombineMode
Xpetra::Combine Mode enumerable type.
static magnitudeType magnitude(T a)