47 #ifndef BELOS_IMGS_ORTHOMANAGER_HPP
48 #define BELOS_IMGS_ORTHOMANAGER_HPP
68 #ifdef BELOS_TEUCHOS_TIME_MONITOR
70 #endif // BELOS_TEUCHOS_TIME_MONITOR
75 template<
class ScalarType,
class MV,
class OP>
79 template<
class ScalarType,
class MV,
class OP>
82 template<
class ScalarType,
class MV,
class OP>
110 #ifdef BELOS_TEUCHOS_TIME_MONITOR
111 std::stringstream ss;
114 std::string orthoLabel = ss.str() +
": Orthogonalization";
117 std::string updateLabel = ss.str() +
": Ortho (Update)";
120 std::string normLabel = ss.str() +
": Ortho (Norm)";
123 std::string ipLabel = ss.str() +
": Ortho (Inner Product)";
130 const std::string& label =
"Belos",
140 #ifdef BELOS_TEUCHOS_TIME_MONITOR
141 std::stringstream ss;
144 std::string orthoLabel = ss.str() +
": Orthogonalization";
147 std::string updateLabel = ss.str() +
": Ortho (Update)";
150 std::string normLabel = ss.str() +
": Ortho (Norm)";
153 std::string ipLabel = ss.str() +
": Ortho (Inner Product)";
169 using Teuchos::parameterList;
173 RCP<ParameterList> params;
175 params = parameterList (*defaultParams);
190 int maxNumOrthogPasses;
195 maxNumOrthogPasses = params->get<
int> (
"maxNumOrthogPasses");
196 }
catch (InvalidParameterName&) {
197 maxNumOrthogPasses = defaultParams->get<
int> (
"maxNumOrthogPasses");
198 params->set (
"maxNumOrthogPasses", maxNumOrthogPasses);
210 }
catch (InvalidParameterName&) {
215 params->remove (
"depTol");
216 }
catch (InvalidParameterName&) {
219 params->set (
"blkTol", blkTol);
224 }
catch (InvalidParameterName&) {
226 params->set (
"singTol", singTol);
240 defaultParams_ = Belos::getIMGSDefaultParameters<ScalarType, MV, OP>();
436 void setLabel(
const std::string& label);
474 #ifdef BELOS_TEUCHOS_TIME_MONITOR
476 #endif // BELOS_TEUCHOS_TIME_MONITOR
484 bool completeBasis,
int howMany = -1 )
const;
516 template<
class ScalarType,
class MV,
class OP>
519 template<
class ScalarType,
class MV,
class OP>
525 template<
class ScalarType,
class MV,
class OP>
530 template<
class ScalarType,
class MV,
class OP>
533 template<
class ScalarType,
class MV,
class OP>
538 template<
class ScalarType,
class MV,
class OP>
545 template<
class ScalarType,
class MV,
class OP>
548 if (label != label_) {
550 #ifdef BELOS_TEUCHOS_TIME_MONITOR
551 std::stringstream ss;
552 ss << label_ +
": IMGS[" << max_ortho_steps_ <<
"]";
554 std::string orthoLabel = ss.str() +
": Orthogonalization";
557 std::string updateLabel = ss.str() +
": Ortho (Update)";
560 std::string normLabel = ss.str() +
": Ortho (Norm)";
563 std::string ipLabel = ss.str() +
": Ortho (Inner Product)";
571 template<
class ScalarType,
class MV,
class OP>
574 const ScalarType ONE = SCT::one();
575 int rank = MVT::GetNumberVecs(X);
578 for (
int i=0; i<rank; i++) {
586 template<
class ScalarType,
class MV,
class OP>
589 int r1 = MVT::GetNumberVecs(X1);
590 int r2 = MVT::GetNumberVecs(X2);
598 template<
class ScalarType,
class MV,
class OP>
614 typedef typename Array< RCP< const MV > >::size_type size_type;
616 #ifdef BELOS_TEUCHOS_TIME_MONITOR
620 ScalarType ONE = SCT::one();
624 int xc = MVT::GetNumberVecs( X );
625 ptrdiff_t xr = MVT::GetGlobalLength( X );
632 B =
rcp (
new serial_dense_matrix_type (xc, xc));
642 for (size_type k = 0; k < nq; ++k)
644 const int numRows = MVT::GetNumberVecs (*Q[k]);
645 const int numCols = xc;
648 C[k] =
rcp (
new serial_dense_matrix_type (numRows, numCols));
649 else if (
C[k]->numRows() != numRows ||
C[k]->numCols() != numCols)
651 int err =
C[k]->reshape (numRows, numCols);
653 "IMGS orthogonalization: failed to reshape "
654 "C[" << k <<
"] (the array of block "
655 "coefficients resulting from projecting X "
656 "against Q[1:" << nq <<
"]).");
664 MX = MVT::Clone(X,MVT::GetNumberVecs(X));
665 OPT::Apply(*(this->_Op),X,*MX);
673 int mxc = MVT::GetNumberVecs( *MX );
674 ptrdiff_t mxr = MVT::GetGlobalLength( *MX );
677 TEUCHOS_TEST_FOR_EXCEPTION( xc == 0 || xr == 0, std::invalid_argument,
"Belos::IMGSOrthoManager::projectAndNormalize(): X must be non-empty" );
680 for (
int i=0; i<nq; i++) {
681 numbas += MVT::GetNumberVecs( *Q[i] );
686 "Belos::IMGSOrthoManager::projectAndNormalize(): Size of X must be consistant with size of B" );
689 "Belos::IMGSOrthoManager::projectAndNormalize(): MVT returned negative dimensions for X,MX" );
691 TEUCHOS_TEST_FOR_EXCEPTION( xc!=mxc || xr!=mxr, std::invalid_argument,
692 "Belos::IMGSOrthoManager::projectAndNormalize(): Size of X must be consistant with size of MX" );
698 bool dep_flg =
false;
702 tmpX = MVT::CloneCopy(X);
704 tmpMX = MVT::CloneCopy(*MX);
711 dep_flg = blkOrtho1( X, MX,
C, Q );
717 std::vector<ScalarType> diag(xc);
719 #ifdef BELOS_TEUCHOS_TIME_MONITOR
722 MVT::MvDot( X, *MX, diag );
724 (*B)(0,0) = SCT::squareroot(SCT::magnitude(diag[0]));
726 if (SCT::magnitude((*
B)(0,0)) > ZERO) {
728 MVT::MvScale( X, ONE/(*
B)(0,0) );
731 MVT::MvScale( *MX, ONE/(*
B)(0,0) );
738 dep_flg = blkOrtho( X, MX,
C, Q );
744 rank = blkOrthoSing( *tmpX, tmpMX,
C,
B, Q );
747 MVT::Assign( *tmpX, X );
749 MVT::Assign( *tmpMX, *MX );
754 rank = findBasis( X, MX,
B,
false );
759 rank = blkOrthoSing( *tmpX, tmpMX,
C,
B, Q );
762 MVT::Assign( *tmpX, X );
764 MVT::Assign( *tmpMX, *MX );
771 TEUCHOS_TEST_FOR_EXCEPTION( rank > xc || rank < 0, std::logic_error,
772 "Belos::IMGSOrthoManager::projectAndNormalize(): Debug error in rank variable." );
782 template<
class ScalarType,
class MV,
class OP>
787 #ifdef BELOS_TEUCHOS_TIME_MONITOR
792 return findBasis(X, MX,
B,
true);
798 template<
class ScalarType,
class MV,
class OP>
818 #ifdef BELOS_TEUCHOS_TIME_MONITOR
822 int xc = MVT::GetNumberVecs( X );
823 ptrdiff_t xr = MVT::GetGlobalLength( X );
825 std::vector<int> qcs(nq);
827 if (nq == 0 || xc == 0 || xr == 0) {
830 ptrdiff_t qr = MVT::GetGlobalLength ( *Q[0] );
841 MX = MVT::Clone(X,MVT::GetNumberVecs(X));
842 OPT::Apply(*(this->_Op),X,*MX);
849 int mxc = MVT::GetNumberVecs( *MX );
850 ptrdiff_t mxr = MVT::GetGlobalLength( *MX );
854 "Belos::IMGSOrthoManager::project(): MVT returned negative dimensions for X,MX" );
857 "Belos::IMGSOrthoManager::project(): Size of X not consistant with MX,Q" );
861 for (
int i=0; i<nq; i++) {
863 "Belos::IMGSOrthoManager::project(): Q lengths not mutually consistant" );
864 qcs[i] = MVT::GetNumberVecs( *Q[i] );
866 "Belos::IMGSOrthoManager::project(): Q has less rows than columns" );
875 "Belos::IMGSOrthoManager::project(): Size of Q not consistant with size of C" );
880 blkOrtho( X, MX,
C, Q );
887 template<
class ScalarType,
class MV,
class OP>
891 bool completeBasis,
int howMany )
const {
908 const ScalarType ONE = SCT::one();
911 int xc = MVT::GetNumberVecs( X );
912 ptrdiff_t xr = MVT::GetGlobalLength( X );
927 MX = MVT::Clone(X,xc);
928 OPT::Apply(*(this->_Op),X,*MX);
939 int mxc = (this->_hasOp) ? MVT::GetNumberVecs( *MX ) : xc;
940 ptrdiff_t mxr = (this->_hasOp) ? MVT::GetGlobalLength( *MX ) : xr;
944 "Belos::IMGSOrthoManager::findBasis(): X must be non-empty" );
946 "Belos::IMGSOrthoManager::findBasis(): Size of X not consistant with size of B" );
948 "Belos::IMGSOrthoManager::findBasis(): Size of X not consistant with size of MX" );
949 TEUCHOS_TEST_FOR_EXCEPTION( xc > xr, std::invalid_argument,
950 "Belos::IMGSOrthoManager::findBasis(): Size of X not feasible for normalization" );
951 TEUCHOS_TEST_FOR_EXCEPTION( howMany < 0 || howMany > xc, std::invalid_argument,
952 "Belos::IMGSOrthoManager::findBasis(): Invalid howMany parameter" );
957 int xstart = xc - howMany;
959 for (
int j = xstart; j < xc; j++) {
968 std::vector<int> index(1);
972 if ((this->_hasOp)) {
974 MXj = MVT::CloneViewNonConst( *MX, index );
983 oldMXj = MVT::CloneCopy( *MXj );
991 std::vector<ScalarType> oldDot( 1 ), newDot( 1 );
996 #ifdef BELOS_TEUCHOS_TIME_MONITOR
999 MVT::MvDot( *Xj, *MXj, oldDot );
1002 TEUCHOS_TEST_FOR_EXCEPTION( SCT::real(oldDot[0]) < ZERO,
OrthoError,
1003 "Belos::IMGSOrthoManager::findBasis(): Negative definiteness discovered in inner product" );
1006 for (
int ii=0; ii<numX; ii++) {
1009 prevX = MVT::CloneView( X, index );
1011 prevMX = MVT::CloneView( *MX, index );
1014 for (
int i=0; i<max_ortho_steps_; ++i) {
1018 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1027 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1030 MVT::MvTimesMatAddMv( -ONE, *prevX, P2, ONE, *Xj );
1038 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1041 MVT::MvTimesMatAddMv( -ONE, *prevMX, P2, ONE, *MXj );
1046 product[ii] = P2[0];
1048 product[ii] += P2[0];
1056 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1059 MVT::MvDot( *Xj, *oldMXj, newDot );
1062 newDot[0] = oldDot[0];
1066 if (completeBasis) {
1070 if ( SCT::magnitude(newDot[0]) < SCT::magnitude(sing_tol_*oldDot[0]) ) {
1075 std::cout <<
"Belos::IMGSOrthoManager::findBasis() --> Random for column " << numX << std::endl;
1080 MVT::MvRandom( *tempXj );
1082 tempMXj = MVT::Clone( X, 1 );
1083 OPT::Apply( *(this->_Op), *tempXj, *tempMXj );
1089 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1092 MVT::MvDot( *tempXj, *tempMXj, oldDot );
1096 for (
int ii=0; ii<numX; ii++) {
1099 prevX = MVT::CloneView( X, index );
1101 prevMX = MVT::CloneView( *MX, index );
1104 for (
int num_orth=0; num_orth<max_ortho_steps_; num_orth++){
1106 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1112 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1115 MVT::MvTimesMatAddMv( -ONE, *prevX, P2, ONE, *tempXj );
1118 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1121 MVT::MvTimesMatAddMv( -ONE, *prevMX, P2, ONE, *tempMXj );
1126 product[ii] = P2[0];
1128 product[ii] += P2[0];
1134 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1137 MVT::MvDot( *tempXj, *tempMXj, newDot );
1140 if ( SCT::magnitude(newDot[0]) >= SCT::magnitude(oldDot[0]*sing_tol_) ) {
1142 MVT::Assign( *tempXj, *Xj );
1144 MVT::Assign( *tempMXj, *MXj );
1156 if ( SCT::magnitude(newDot[0]) < SCT::magnitude(oldDot[0]*blk_tol_) ) {
1165 ScalarType diag = SCT::squareroot(SCT::magnitude(newDot[0]));
1167 MVT::MvScale( *Xj, ONE/diag );
1170 MVT::MvScale( *MXj, ONE/diag );
1184 for (
int i=0; i<numX; i++) {
1185 (*B)(i,j) = product(i);
1196 template<
class ScalarType,
class MV,
class OP>
1203 int xc = MVT::GetNumberVecs( X );
1204 const ScalarType ONE = SCT::one();
1206 std::vector<int> qcs( nq );
1207 for (
int i=0; i<nq; i++) {
1208 qcs[i] = MVT::GetNumberVecs( *Q[i] );
1212 std::vector<int> index(1);
1217 for (
int i=0; i<nq; i++) {
1220 for (
int ii=0; ii<qcs[i]; ii++) {
1223 tempQ = MVT::CloneView( *Q[i], index );
1228 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1235 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1238 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC, ONE, X );
1245 OPT::Apply( *(this->_Op), X, *MX);
1249 MQ[i] = MVT::Clone( *Q[i], qcs[i] );
1250 OPT::Apply( *(this->_Op), *Q[i], *MQ[i] );
1251 MVT::MvTimesMatAddMv( -ONE, *MQ[i], *
C[i], ONE, *MX );
1257 for (
int j = 1; j < max_ortho_steps_; ++j) {
1259 for (
int i=0; i<nq; i++) {
1264 for (
int ii=0; ii<qcs[i]; ii++) {
1267 tempQ = MVT::CloneView( *Q[i], index );
1273 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1280 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1283 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC2, ONE, X );
1292 MVT::MvTimesMatAddMv( -ONE, *MQ[i], C2, ONE, *MX );
1294 else if (xc <= qcs[i]) {
1296 OPT::Apply( *(this->_Op), X, *MX);
1307 template<
class ScalarType,
class MV,
class OP>
1314 int xc = MVT::GetNumberVecs( X );
1315 bool dep_flg =
false;
1316 const ScalarType ONE = SCT::one();
1318 std::vector<int> qcs( nq );
1319 for (
int i=0; i<nq; i++) {
1320 qcs[i] = MVT::GetNumberVecs( *Q[i] );
1326 std::vector<ScalarType> oldDot( xc );
1328 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1331 MVT::MvDot( X, *MX, oldDot );
1334 std::vector<int> index(1);
1339 for (
int i=0; i<nq; i++) {
1342 for (
int ii=0; ii<qcs[i]; ii++) {
1345 tempQ = MVT::CloneView( *Q[i], index );
1350 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1357 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1360 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC, ONE, X );
1367 OPT::Apply( *(this->_Op), X, *MX);
1371 MQ[i] = MVT::Clone( *Q[i], qcs[i] );
1372 OPT::Apply( *(this->_Op), *Q[i], *MQ[i] );
1373 MVT::MvTimesMatAddMv( -ONE, *MQ[i], *
C[i], ONE, *MX );
1379 for (
int j = 1; j < max_ortho_steps_; ++j) {
1381 for (
int i=0; i<nq; i++) {
1385 for (
int ii=0; ii<qcs[i]; ii++) {
1388 tempQ = MVT::CloneView( *Q[i], index );
1394 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1401 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1404 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC2, ONE, X );
1412 MVT::MvTimesMatAddMv( -ONE, *MQ[i], C2, ONE, *MX );
1414 else if (xc <= qcs[i]) {
1416 OPT::Apply( *(this->_Op), X, *MX);
1423 std::vector<ScalarType> newDot(xc);
1425 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1428 MVT::MvDot( X, *MX, newDot );
1432 for (
int i=0; i<xc; i++){
1433 if (SCT::magnitude(newDot[i]) < SCT::magnitude(oldDot[i] * blk_tol_)) {
1442 template<
class ScalarType,
class MV,
class OP>
1451 const ScalarType ONE = SCT::one();
1452 const ScalarType ZERO = SCT::zero();
1455 int xc = MVT::GetNumberVecs( X );
1456 std::vector<int> indX( 1 );
1457 std::vector<ScalarType> oldDot( 1 ), newDot( 1 );
1459 std::vector<int> qcs( nq );
1460 for (
int i=0; i<nq; i++) {
1461 qcs[i] = MVT::GetNumberVecs( *Q[i] );
1470 for (
int j=0; j<xc; j++) {
1472 bool dep_flg =
false;
1476 std::vector<int> index( j );
1477 for (
int ind=0; ind<j; ind++) {
1480 lastQ = MVT::CloneView( X, index );
1485 qcs.push_back( MVT::GetNumberVecs( *lastQ ) );
1490 Xj = MVT::CloneViewNonConst( X, indX );
1492 MXj = MVT::CloneViewNonConst( *MX, indX );
1500 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1503 MVT::MvDot( *Xj, *MXj, oldDot );
1510 for (
int i=0; i<Q.
size(); i++) {
1513 for (
int ii=0; ii<qcs[i]; ii++) {
1516 tempQ = MVT::CloneView( *Q[i], indX );
1524 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC, ONE, *Xj );
1530 OPT::Apply( *(this->_Op), *Xj, *MXj);
1534 MQ[i] = MVT::Clone( *Q[i], qcs[i] );
1535 OPT::Apply( *(this->_Op), *Q[i], *MQ[i] );
1537 MVT::MvTimesMatAddMv( -ONE, *MQ[i], tempC, ONE, *MXj );
1543 for (
int num_ortho_steps=1; num_ortho_steps < max_ortho_steps_; ++num_ortho_steps) {
1545 for (
int i=0; i<Q.
size(); i++) {
1549 for (
int ii=0; ii<qcs[i]; ii++) {
1552 tempQ = MVT::CloneView( *Q[i], indX );
1558 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC2, ONE, *Xj );
1569 MVT::MvTimesMatAddMv( -ONE, *MQ[i], C2, ONE, *MXj );
1571 else if (xc <= qcs[i]) {
1573 OPT::Apply( *(this->_Op), *Xj, *MXj);
1581 if (SCT::magnitude(newDot[0]) < SCT::magnitude(oldDot[0]*sing_tol_)) {
1587 ScalarType diag = SCT::squareroot(SCT::magnitude(newDot[0]));
1589 MVT::MvScale( *Xj, ONE/diag );
1592 MVT::MvScale( *MXj, ONE/diag );
1602 MVT::MvRandom( *tempXj );
1604 tempMXj = MVT::Clone( X, 1 );
1605 OPT::Apply( *(this->_Op), *tempXj, *tempMXj );
1611 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1614 MVT::MvDot( *tempXj, *tempMXj, oldDot );
1617 for (
int num_orth=0; num_orth<max_ortho_steps_; num_orth++) {
1619 for (
int i=0; i<Q.
size(); i++) {
1623 for (
int ii=0; ii<qcs[i]; ii++) {
1626 tempQ = MVT::CloneView( *Q[i], indX );
1631 MVT::MvTimesMatAddMv( -ONE, *tempQ, tempC, ONE, *tempXj );
1639 MVT::MvTimesMatAddMv( -ONE, *MQ[i], product, ONE, *tempMXj );
1641 else if (xc <= qcs[i]) {
1643 OPT::Apply( *(this->_Op), *tempXj, *tempMXj);
1651 #ifdef BELOS_TEUCHOS_TIME_MONITOR
1654 MVT::MvDot( *tempXj, *tempMXj, newDot );
1658 if ( SCT::magnitude(newDot[0]) >= SCT::magnitude(oldDot[0]*sing_tol_) ) {
1659 ScalarType diag = SCT::squareroot(SCT::magnitude(newDot[0]));
1665 MVT::MvAddMv( ONE/diag, *tempXj, ZERO, *tempXj, *Xj );
1667 MVT::MvAddMv( ONE/diag, *tempMXj, ZERO, *tempMXj, *MXj );
1687 template<
class ScalarType,
class MV,
class OP>
1691 using Teuchos::parameterList;
1694 RCP<ParameterList> params = parameterList (
"IMGS");
1699 "Maximum number of orthogonalization passes (includes the "
1700 "first). Default is 2, since \"twice is enough\" for Krylov "
1703 "Block reorthogonalization threshold.");
1705 "Singular block detection threshold.");
1710 template<
class ScalarType,
class MV,
class OP>
1716 RCP<ParameterList> params = getIMGSDefaultParameters<ScalarType, MV, OP>();
1718 params->set (
"maxNumOrthogPasses",
1720 params->set (
"blkTol",
1722 params->set (
"singTol",
1730 #endif // BELOS_IMGS_ORTHOMANAGER_HPP
void setParameterList(const Teuchos::RCP< Teuchos::ParameterList > &plist)
bool is_null(const boost::shared_ptr< T > &p)
Teuchos::ScalarTraits< ScalarType >::magnitudeType orthogError(const MV &X1, const MV &X2) const
This method computes the error in orthogonality of two multivectors, measured as the Frobenius norm o...
MagnitudeType blk_tol_
Block reorthogonalization tolerance.
static const int max_ortho_steps_fast_
Max number of (re)orthogonalization steps, including the first (fast).
void setBlkTol(const MagnitudeType blk_tol)
Set parameter for block re-orthogonalization threshhold.
int findBasis(MV &X, Teuchos::RCP< MV > MX, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > C, bool completeBasis, int howMany=-1) const
Routine to find an orthonormal basis for X.
void project(MV &X, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
This method calls project(X,Teuchos::null,C,Q); see documentation for that function.
bool is_null(const std::shared_ptr< T > &p)
Teuchos::ScalarTraits< ScalarType >::magnitudeType orthonormError(const MV &X) const
This method computes the error in orthonormality of a multivector, measured as the Frobenius norm of ...
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
bool blkOrtho1(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
Routine to compute the block orthogonalization.
Declaration of basic traits for the multivector type.
int blkOrthoSing(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B, Teuchos::ArrayView< Teuchos::RCP< const MV > > QQ) const
Project X against QQ and normalize X, one vector at a time.
Class which defines basic traits for the operator type.
ScalarTraits< ScalarType >::magnitudeType normFrobenius() const
const std::string & getLabel() const
This method returns the label being used by the timers in the orthogonalization manager.
Traits class which defines basic operations on multivectors.
void innerProd(const MV &X, const MV &Y, Teuchos::SerialDenseMatrix< int, ScalarType > &Z) const
Provides the inner product defining the orthogonality concepts, using the provided operator...
IMGSOrthoManager(const std::string &label="Belos", Teuchos::RCP< const OP > Op=Teuchos::null, const int max_ortho_steps=max_ortho_steps_default_, const MagnitudeType blk_tol=blk_tol_default_, const MagnitudeType sing_tol=sing_tol_default_)
Constructor specifying re-orthogonalization tolerance.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
std::string label_
Label for timers.
bool is_null(const RCP< T > &p)
int normalize(MV &X, Teuchos::RCP< MV > MX, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B) const
This method takes a multivector X and attempts to compute an orthonormal basis for ...
MagnitudeType getBlkTol() const
Return parameter for block re-orthogonalization threshhold.
OperatorTraits< ScalarType, MV, OP > OPT
Teuchos::ScalarTraits< MagnitudeType > MGT
Exception thrown to signal error in an orthogonalization manager method.
MagnitudeType sing_tol_
Singular block detection threshold.
void setMyParamList(const RCP< ParameterList > ¶mList)
int max_ortho_steps_
Max number of (re)orthogonalization steps, including the first.
MultiVecTraits< ScalarType, MV > MVT
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters() const
void resize(size_type new_size, const value_type &x=value_type())
void setLabel(const std::string &label)
This method sets the label used by the timers in the orthogonalization manager.
An implementation of the Belos::MatOrthoManager that performs orthogonalization using multiple steps ...
void push_back(const value_type &x)
void project(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
Given a list of (mutually and internally) orthonormal bases Q, this method takes a multivector X and ...
static const MagnitudeType sing_tol_default_
Singular block detection threshold (default).
Teuchos::RCP< Teuchos::ParameterList > getIMGSDefaultParameters()
"Default" parameters for robustness and accuracy.
Teuchos::ScalarTraits< ScalarType > SCT
Teuchos::RCP< Teuchos::ParameterList > defaultParams_
Default parameter list.
Teuchos::ScalarTraits< ScalarType >::magnitudeType MagnitudeType
static const int max_ortho_steps_default_
Max number of (re)orthogonalization steps, including the first (default).
IMGSOrthoManager(const Teuchos::RCP< Teuchos::ParameterList > &plist, const std::string &label="Belos", Teuchos::RCP< const OP > Op=Teuchos::null)
Constructor that takes a list of parameters.
MagnitudeType getSingTol() const
Return parameter for singular block detection.
Class which defines basic traits for the operator type.
int normalize(MV &X, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B) const
This method calls normalize(X,Teuchos::null,B); see documentation for that function.
virtual int projectAndNormalizeWithMxImpl(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
Given a set of bases Q[i] and a multivector X, this method computes an orthonormal basis for ...
~IMGSOrthoManager()
Destructor.
Belos's templated virtual class for providing routines for orthogonalization and orthonormzalition of...
void setSingTol(const MagnitudeType sing_tol)
Set parameter for singular block detection.
Belos header file which uses auto-configuration information to include necessary C++ headers...
Teuchos::RCP< Teuchos::ParameterList > getIMGSFastParameters()
"Fast" but possibly unsafe or less accurate parameters.
static const MagnitudeType blk_tol_default_
Block reorthogonalization threshold (default).
static const MagnitudeType sing_tol_fast_
Singular block detection threshold (fast).
bool blkOrtho(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
Routine to compute the block orthogonalization.
static const MagnitudeType blk_tol_fast_
Block reorthogonalization threshold (fast).
Templated virtual class for providing orthogonalization/orthonormalization methods with matrix-based ...