32 using namespace Teuchos;
34 int main(
int argc,
char *argv[]) {
36 typedef std::complex<double> ST;
38 typedef SCT::magnitudeType MT;
44 ST zero = SCT::zero();
55 bool norm_failure =
false;
56 bool proc_verbose =
false;
63 std::string ortho(
"DGKS");
67 cmdp.
setOption(
"verbose",
"quiet",&verbose,
"Print messages and results.");
68 cmdp.
setOption(
"pseudo",
"regular",&pseudo,
"Use pseudo-block GMRES to solve the linear systems.");
69 cmdp.
setOption(
"frequency",&frequency,
"Solvers frequency for printing residuals (#iters).");
70 cmdp.
setOption(
"tol",&tol,
"Relative residual tolerance used by GMRES solver.");
71 cmdp.
setOption(
"num-rhs",&numrhs,
"Number of right-hand sides to be solved for.");
72 cmdp.
setOption(
"num-restarts",&maxrestarts,
"Maximum number of restarts allowed for the GMRES solver.");
73 cmdp.
setOption(
"blocksize",&blocksize,
"Block size used by GMRES.");
74 cmdp.
setOption(
"subspace-length",&length,
"Maximum dimension of block-subspace used by GMRES solver.");
75 cmdp.
setOption(
"ortho-type",&ortho,
"Orthogonalization type, either DGKS, ICGS or IMGS");
80 proc_verbose = verbose && (MyPID==0);
87 #ifndef HAVE_BELOS_TRIUTILS
88 std::cout <<
"This test requires Triutils. Please configure with --enable-triutils." << std::endl;
90 std::cout <<
"End Result: TEST FAILED" << std::endl;
99 std::vector<ST> diag( dim, (ST)4.0 );
106 int maxits = dim/blocksize;
109 belosList.
set(
"Num Blocks", length );
110 belosList.
set(
"Block Size", blocksize );
111 belosList.
set(
"Maximum Iterations", maxits );
112 belosList.
set(
"Maximum Restarts", maxrestarts );
113 belosList.
set(
"Convergence Tolerance", tol );
114 belosList.
set(
"Orthogonalization", ortho );
119 belosList.
set(
"Output Frequency", frequency );
130 MVT::MvInit( *rhs, 1.0 );
131 MVT::MvInit( *soln, zero );
137 bool set = problem->setProblem();
140 std::cout << std::endl <<
"ERROR: Belos::LinearProblem failed to set up correctly!" << std::endl;
159 solver->setDebugStatusTest(
Teuchos::rcp(&debugTest,
false) );
165 std::cout << std::endl << std::endl;
166 std::cout <<
"Dimension of matrix: " << dim << std::endl;
167 std::cout <<
"Number of right-hand sides: " << numrhs << std::endl;
168 std::cout <<
"Block size used by solver: " << blocksize << std::endl;
169 std::cout <<
"Max number of Gmres iterations: " << maxits << std::endl;
170 std::cout <<
"Relative residual tolerance: " << tol << std::endl;
171 std::cout << std::endl;
181 OPT::Apply( *A, *soln, *temp );
182 MVT::MvAddMv( one, *rhs, -one, *temp, *temp );
183 std::vector<MT> norm_num(numrhs), norm_denom(numrhs);
184 MVT::MvNorm( *temp, norm_num );
185 MVT::MvNorm( *rhs, norm_denom );
186 for (
int i=0; i<numrhs; ++i) {
188 std::cout <<
"Relative residual "<<i<<
" : " << norm_num[i] / norm_denom[i] << std::endl;
189 if ( norm_num[i] / norm_denom[i] > tol ) {
195 const std::vector<MT> residualLog = debugTest.
getLogResNorm();
196 if (numrhs==1 && proc_verbose && residualLog.size())
198 std::cout <<
"Absolute residual 2-norm [ " << residualLog.size() <<
" ] : ";
199 for (
unsigned int i=0; i<residualLog.size(); i++)
200 std::cout << residualLog[i] <<
" ";
201 std::cout << std::endl;
202 std::cout <<
"Final abs 2-norm / rhs 2-norm : " << residualLog[residualLog.size()-1] / norm_denom[0] << std::endl;
208 std::cout <<
"End Result: TEST PASSED" << std::endl;
211 std::cout <<
"End Result: TEST FAILED" << std::endl;
216 return ( success ? EXIT_SUCCESS : EXIT_FAILURE );
std::string Belos_Version()
int main(int argc, char *argv[])
const std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > & getLogResNorm() const
Returns the log of the absolute residual norm from the iteration.
A Belos::StatusTest debugging class for storing the absolute residual norms generated during a solve...
ParameterList & set(std::string const &name, T &&value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
Interface to Block GMRES and Flexible GMRES.
Belos::StatusTest debugging class for storing the absolute residual norms generated during a solve...
Traits class which defines basic operations on multivectors.
Simple example of a user's defined Belos::MultiVec class.
Alternative run-time polymorphic interface for operators.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
The Belos::BlockGmresSolMgr provides a solver manager for the BlockGmres linear solver.
void setOption(const char option_true[], const char option_false[], bool *option_val, const char documentation[]=NULL)
#define TEUCHOS_STANDARD_CATCH_STATEMENTS(VERBOSE, ERR_STREAM, SUCCESS_FLAG)
A linear system to solve, and its associated information.
Class which describes the linear problem to be solved by the iterative solver.
EParseCommandLineReturn parse(int argc, char *argv[], std::ostream *errout=&std::cerr) const
Interface to standard and "pseudoblock" GMRES.
ReturnType
Whether the Belos solve converged for all linear systems.
Simple example of a user's defined Belos::Operator class.
Interface for multivectors used by Belos' linear solvers.
Class which defines basic traits for the operator type.
The Belos::PseudoBlockGmresSolMgr provides a solver manager for the BlockGmres linear solver...
Belos header file which uses auto-configuration information to include necessary C++ headers...