25 #include "Tpetra_Util_iohb.h"
31 using namespace Teuchos;
33 int main(
int argc,
char *argv[])
40 MPI_Init(&argc,&argv);
48 MPI_Comm_rank(MPI_COMM_WORLD, &MyPID);
54 std::string
filename(
"mhd1280b.cua");
60 cmdp.
setOption(
"verbose",
"quiet",&verbose,
"Print messages and results.");
61 cmdp.
setOption(
"debug",
"quiet",&verbose,
"Print messages and results.");
62 cmdp.
setOption(
"filename",&filename,
"Filename for Harwell-Boeing test matrix.");
70 typedef std::complex<double> ST;
91 info = readHB_newmat_double(filename.c_str(),&dim,&dim2,&nnz,&colptr,&rowind,&dvals);
92 if (info == 0 || nnz < 0) {
94 <<
"Warning reading '" << filename <<
"'" << std::endl
95 <<
"End Result: TEST FAILED" << std::endl;
102 std::vector<ST> cvals(nnz);
103 for (
int ii=0; ii<nnz; ii++) {
104 cvals[ii] = ST(dvals[ii*2],dvals[ii*2+1]);
112 std::vector<ScalarTraits<ST>::magnitudeType> v(blockSize);
114 MVT::MvNorm(*ivec,v);
120 ierr = Belos::TestMultiVecTraits<ST,MV>(MyOM,ivec);
123 MyOM->print(
Belos::Warnings,
"*** MyMultiVec<std::complex> PASSED TestMultiVecTraits()\n");
126 MyOM->print(
Belos::Warnings,
"*** MyMultiVec<std::complex> FAILED TestMultiVecTraits() ***\n\n");
130 ierr = Belos::TestOperatorTraits<ST,MV,OP>(MyOM,ivec,A2);
133 MyOM->print(
Belos::Warnings,
"*** MyOperator<std::complex> PASSED TestOperatorTraits()\n");
136 MyOM->print(
Belos::Warnings,
"*** MyOperator<std::complex> FAILED TestOperatorTraits() ***\n\n");
140 ierr = Belos::TestOperatorTraits<ST,MV,OP>(MyOM,ivec,A1);
143 MyOM->print(
Belos::Warnings,
"*** MyBetterOperator<std::complex> PASSED TestOperatorTraits()\n");
146 MyOM->print(
Belos::Warnings,
"*** MyBetterOperator<std::complex> FAILED TestOperatorTraits() ***\n\n");
167 return ( success ? EXIT_SUCCESS : EXIT_FAILURE );
Belos's basic output manager for sending information of select verbosity levels to the appropriate ou...
Class which manages the output and verbosity of the Belos solvers.
int main(int argc, char *argv[])
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)
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)
Test routines for MultiVecTraits and OperatorTraits conformity.
EParseCommandLineReturn parse(int argc, char *argv[], std::ostream *errout=&std::cerr) const
Simple example of a user's defined Belos::Operator class.
Interface for multivectors used by Belos' linear solvers.
Belos header file which uses auto-configuration information to include necessary C++ headers...
Simple example of a user's defined Belos::Operator class.