45 #ifndef __Belos_SimpleOrthoManager_hpp
46 #define __Belos_SimpleOrthoManager_hpp
53 #include <Teuchos_ParameterListAcceptorDefaultBase.hpp>
54 #include <Teuchos_StandardCatchMacros.hpp>
67 template<
class Scalar,
class MV>
88 bool reorthogonalize_;
94 #ifdef BELOS_TEUCHOS_TIME_MONITOR
111 makeTimer (
const std::string& prefix,
112 const std::string& timerName)
114 const std::string timerLabel =
115 prefix.empty() ? timerName : (prefix +
": " + timerName);
118 #endif // BELOS_TEUCHOS_TIME_MONITOR
132 using Teuchos::parameterList;
135 const std::string defaultNormalizationMethod (
"MGS");
136 const bool defaultReorthogonalization =
false;
138 if (defaultParams_.
is_null()) {
139 RCP<ParameterList> params = parameterList (
"Simple");
140 params->set (
"Normalization", defaultNormalizationMethod,
141 "Which normalization method to use. Valid values are \"MGS\""
142 " (for Modified Gram-Schmidt) and \"CGS\" (for Classical "
144 params->set (
"Reorthogonalization", defaultReorthogonalization,
145 "Whether to perform one (unconditional) reorthogonalization "
147 defaultParams_ = params;
149 return defaultParams_;
161 using Teuchos::parameterList;
165 const std::string fastNormalizationMethod (
"CGS");
166 const bool fastReorthogonalization =
false;
170 fastParams->set (
"Normalization", fastNormalizationMethod);
171 fastParams->set (
"Reorthogonalization", fastReorthogonalization);
180 using Teuchos::parameterList;
185 RCP<ParameterList> params;
187 params = parameterList (*defaultParams);
192 const std::string normalizeImpl = params->get<std::string>(
"Normalization");
193 const bool reorthogonalize = params->get<
bool>(
"Reorthogonalization");
195 if (normalizeImpl ==
"MGS" ||
196 normalizeImpl ==
"Mgs" ||
197 normalizeImpl ==
"mgs") {
199 params->set (
"Normalization", std::string (
"MGS"));
202 params->set (
"Normalization", std::string (
"CGS"));
204 reorthogonalize_ = reorthogonalize;
220 const std::string& label,
225 #ifdef BELOS_TEUCHOS_TIME_MONITOR
226 timerOrtho_ = makeTimer (label,
"All orthogonalization");
227 timerProject_ = makeTimer (label,
"Projection");
228 timerNormalize_ = makeTimer (label,
"Normalization");
229 #endif // BELOS_TEUCHOS_TIME_MONITOR
234 std::ostream& dbg = outMan_->stream(
Debug);
235 dbg <<
"Belos::SimpleOrthoManager constructor:" << endl
236 <<
"-- Normalization method: "
237 << (useMgs_ ?
"MGS" :
"CGS") << endl
238 <<
"-- Reorthogonalize (unconditionally)? "
239 << (reorthogonalize_ ?
"Yes" :
"No") << endl;
249 #ifdef BELOS_TEUCHOS_TIME_MONITOR
250 timerOrtho_ = makeTimer (label,
"All orthogonalization");
251 timerProject_ = makeTimer (label,
"Projection");
252 timerNormalize_ = makeTimer (label,
"Normalization");
253 #endif // BELOS_TEUCHOS_TIME_MONITOR
265 void norm (
const MV& X, std::vector<magnitude_type>& normVec)
const {
269 if (normVec.size () < static_cast<size_t> (numCols)) {
270 normVec.resize (numCols);
280 #ifdef BELOS_TEUCHOS_TIME_MONITOR
283 #endif // BELOS_TEUCHOS_TIME_MONITOR
285 allocateProjectionCoefficients (C, Q, X,
true);
286 rawProject (X, Q, C);
287 if (reorthogonalize_) {
289 allocateProjectionCoefficients (C2, Q, X,
false);
290 for (
int k = 0; k < Q.size(); ++k)
298 #ifdef BELOS_TEUCHOS_TIME_MONITOR
301 #endif // BELOS_TEUCHOS_TIME_MONITOR
304 return normalizeMgs (X, B);
306 return normalizeCgs (X, B);
332 for (
int k = 0; k < ncols; ++k) {
343 mat_type X1_T_X2 (ncols_X1, ncols_X2);
348 void setLabel (
const std::string& label) { label_ = label; }
349 const std::string&
getLabel()
const {
return label_; }
369 }
else if (B->numRows () != numCols || B->numCols () != numCols) {
370 B->shape (numCols, numCols);
374 std::vector<magnitude_type> normVec (1);
375 for (
int j = 0; j < numCols; ++j) {
378 for (
int i = 0; i < j; ++i) {
380 const MV& X_i = *X_prv;
381 mat_type B_ij (View, *B, 1, 1, i, j);
384 if (reorthogonalize_) {
388 const Scalar B_ij_first = (*B)(i, j);
391 (*B)(i, j) += B_ij_first;
397 (*B)(j, j) = theNorm;
409 normalizeCgs (MV &X,
mat_ptr B)
const
423 }
else if (B->numRows() != numCols || B->numCols() != numCols) {
424 B->shape (numCols, numCols);
429 std::vector<magnitude_type> normVec (1);
438 norm (*X_cur, normVec);
440 B_ref(0,0) = theNorm;
442 const Scalar invNorm =
STS::one () / theNorm;
451 for (
int j = 1; j < numCols; ++j) {
454 mat_type B_prvcur (View, B_ref, j, 1, 0, j);
461 if (reorthogonalize_) {
462 mat_type B2_prvcur (View, B2, j, 1, 0, j);
465 B_prvcur += B2_prvcur;
468 norm (*X_cur, normVec);
470 B_ref(j,j) = theNorm;
472 const Scalar invNorm =
STS::one () / theNorm;
487 const bool attemptToRecycle =
true)
const
491 const int num_Q_blocks = Q.size();
496 int numAllocated = 0;
497 if (attemptToRecycle) {
498 for (
int i = 0; i < num_Q_blocks; ++i) {
508 if (Ci.numRows() != ncols_Qi || Ci.numCols() != ncols_X) {
509 Ci.shape (ncols_Qi, ncols_X);
519 for (
int i = 0; i < num_Q_blocks; ++i) {
527 std::ostream& dbg = outMan_->stream(
Debug);
528 dbg <<
"SimpleOrthoManager::allocateProjectionCoefficients: "
529 <<
"Allocated " << numAllocated <<
" blocks out of "
530 << num_Q_blocks << endl;
540 const int num_Q_blocks = Q.size();
541 for (
int i = 0; i < num_Q_blocks; ++i) {
543 const MV& Qi = *Q[i];
552 #endif // __Belos_SimpleOrthoManager_hpp