test_std_ops.cpp

00001 // @HEADER
00002 // ***********************************************************************
00003 // 
00004 //    Thyra: Interfaces and Support for Abstract Numerical Algorithms
00005 //                 Copyright (2004) Sandia Corporation
00006 // 
00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
00008 // license for use of this work by or on behalf of the U.S. Government.
00009 // 
00010 // This library is free software; you can redistribute it and/or modify
00011 // it under the terms of the GNU Lesser General Public License as
00012 // published by the Free Software Foundation; either version 2.1 of the
00013 // License, or (at your option) any later version.
00014 //  
00015 // This library is distributed in the hope that it will be useful, but
00016 // WITHOUT ANY WARRANTY; without even the implied warranty of
00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018 // Lesser General Public License for more details.
00019 //  
00020 // You should have received a copy of the GNU Lesser General Public
00021 // License along with this library; if not, write to the Free Software
00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00023 // USA
00024 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 
00025 // 
00026 // ***********************************************************************
00027 // @HEADER
00028 
00029 #include "Thyra_DefaultSpmdVectorSpace.hpp"
00030 #include "Thyra_DefaultProductVectorSpace.hpp"
00031 #include "Thyra_VectorStdOpsTester.hpp"
00032 #include "Thyra_MultiVectorStdOpsTester.hpp"
00033 #include "Thyra_TestingTools.hpp"
00034 #include "Teuchos_GlobalMPISession.hpp"
00035 #include "Teuchos_CommandLineProcessor.hpp"
00036 #include "Teuchos_VerboseObject.hpp"
00037 #include "Teuchos_DefaultComm.hpp"
00038 #include "Teuchos_arrayArg.hpp"
00039 
00040 namespace Thyra {
00041 
00044 template <class Scalar>
00045 bool run_std_ops_tests(
00046   const int                                                       n
00047   ,const typename Teuchos::ScalarTraits<Scalar>::magnitudeType    max_rel_err
00048   ,const bool                                                     dumpAll
00049   ,Teuchos::FancyOStream                                          *out_arg
00050   )
00051 {
00052 
00053   using Teuchos::RCP;
00054   using Teuchos::rcp;
00055   using Teuchos::OSTab;
00056   typedef Teuchos::ScalarTraits<Scalar> ST;
00057   typedef typename ST::magnitudeType ScalarMag;
00058   typedef Thyra::Index Index;
00059 
00060   RCP<Teuchos::FancyOStream>
00061     out = rcp(new Teuchos::FancyOStream(rcp(out_arg,false)));
00062 
00063   VectorStdOpsTester<Scalar> vectorStdOpsTester;
00064   vectorStdOpsTester.warning_tol(ScalarMag(0.1)*max_rel_err);
00065   vectorStdOpsTester.error_tol(max_rel_err);
00066   MultiVectorStdOpsTester<Scalar> multiVectorStdOpsTester;
00067   multiVectorStdOpsTester.warning_tol(ScalarMag(0.1)*max_rel_err);
00068   multiVectorStdOpsTester.error_tol(max_rel_err);
00069 
00070   if(out.get()) *out << "\n*** Entering run_std_ops_tests<"<<ST::name()<<">(...) ...\n";
00071 
00072   bool success = true;
00073 
00074   if(out.get()) *out << "\nCreating a serial vector space svs with n="<<n<<" vector elements ...\n";
00075 
00076   const RCP<const Teuchos::Comm<Index> >
00077     comm = Teuchos::DefaultComm<Index>::getComm();
00078 
00079   const RCP<Thyra::VectorSpaceBase<Scalar> > svs =
00080     Thyra::defaultSpmdVectorSpace<Scalar>(comm,n,-1);
00081 
00082   if(out.get()) *out << "\nTesting standard vector ops with svs ...\n";
00083   if(!vectorStdOpsTester.checkStdOps(*svs, OSTab(out).get(), dumpAll)) success = false;
00084 
00085   if(out.get()) *out << "\nTesting standard multi-vector ops with svs ...\n";
00086   if(!multiVectorStdOpsTester.checkStdOps(*svs, OSTab(out).get(), dumpAll)) success = false;
00087 
00088   const int numBlocks = 3;
00089 
00090   if(out.get()) *out << "\nCreating a product space pvs with numBlocks="<<numBlocks<<" and n="<<n<<"vector elements per block ...\n";
00091 
00092   Teuchos::Array<Teuchos::RCP<const Thyra::VectorSpaceBase<Scalar> > >
00093     vecSpaces(numBlocks);
00094   Teuchos::RCP<const Thyra::VectorSpaceBase<Scalar> >
00095     spaceBlock = Thyra::defaultSpmdVectorSpace<Scalar>(comm,n,-1);
00096   for( int i = 0; i < numBlocks; ++i )
00097     vecSpaces[i] = spaceBlock;
00098 
00099   Thyra::DefaultProductVectorSpace<Scalar> pvs(numBlocks,&vecSpaces[0]);
00100 
00101   if(out.get()) *out << "\nTesting standard vector ops with pvs ...\n";
00102   if(!vectorStdOpsTester.checkStdOps(pvs,OSTab(out).get(),dumpAll)) success = false;
00103 
00104   if(out.get()) *out << "\nTesting standard multi-vector ops with pvs ...\n";
00105   if(!multiVectorStdOpsTester.checkStdOps(pvs,OSTab(out).get(),dumpAll)) success = false;
00106 
00107   if(out.get()) *out << "\nCreating a nested product space ppvs with numBlocks="<<numBlocks<<" product spaces as components ...\n";
00108 
00109   Teuchos::Array<Teuchos::RCP<const Thyra::VectorSpaceBase<Scalar> > >
00110     blockVecSpaces(numBlocks);
00111   for( int i = 0; i < numBlocks; ++i )
00112     blockVecSpaces[i] = Teuchos::rcp(&pvs,false);
00113 
00114   Thyra::DefaultProductVectorSpace<Scalar> ppvs(numBlocks,&blockVecSpaces[0]);
00115 
00116   if(out.get()) *out << "\nTesting standard vector ops with ppvs ...\n";
00117   if(!vectorStdOpsTester.checkStdOps(ppvs,OSTab(out).get(),dumpAll)) success = false;
00118 
00119   if(out.get()) *out << "\nTesting standard multi-vector ops with ppvs ...\n";
00120   if(!multiVectorStdOpsTester.checkStdOps(ppvs,OSTab(out).get(),dumpAll)) success = false;
00121 
00122   return success;
00123 
00124 }
00125 
00126 } // namespace Thyra
00127 
00128 int main( int argc, char* argv[] ) {
00129 
00130   using Teuchos::CommandLineProcessor;
00131 
00132   bool success = true;
00133   bool verbose = true;
00134   bool dumpAll = false;
00135 
00136   Teuchos::GlobalMPISession mpiSession(&argc,&argv);
00137   // KL 27 Jul 2006 -- Commenting out unused variables 
00138   // const int procRank = Teuchos::GlobalMPISession::getRank();
00139   // const int numProc = Teuchos::GlobalMPISession::getNProc();
00140 
00141   Teuchos::RCP<Teuchos::FancyOStream>
00142     out = Teuchos::VerboseObjectBase::getDefaultOStream();
00143 
00144   try {
00145 
00146     //
00147     // Read options from the command-line
00148     //
00149 
00150 
00151     CommandLineProcessor  clp;
00152     clp.throwExceptions(false);
00153     clp.addOutputSetupOptions(true);
00154 
00155     int local_dim = 4;
00156     clp.setOption( "local-dim", &local_dim, "Number of vector elements per process." );
00157 
00158     double eps_scale = 200.0;
00159     clp.setOption( "eps-scale", &eps_scale, "Constant (greater than 1) to scale eps by in error tests." );
00160 
00161     clp.setOption( "verbose", "quiet", &verbose,
00162       "Determines if any output is printed or not." );
00163 
00164     clp.setOption( "dump-all", "no-dump", &dumpAll, "Determines if quantities are dumped or not." );
00165 
00166     CommandLineProcessor::EParseCommandLineReturn parse_return = clp.parse(argc,argv);
00167     if( parse_return != CommandLineProcessor::PARSE_SUCCESSFUL ) return parse_return;
00168 
00169     //
00170     // Run the tests
00171     //
00172 
00173 #if defined(HAVE_THYRA_FLOAT)
00174     if( !Thyra::run_std_ops_tests<float>(local_dim,float(eps_scale*Teuchos::ScalarTraits<float>::eps()),dumpAll,verbose?&*out:NULL) ) success = false;
00175 #endif
00176     if( !Thyra::run_std_ops_tests<double>(local_dim,double(eps_scale*Teuchos::ScalarTraits<double>::eps()),dumpAll,verbose?&*out:NULL) ) success = false;
00177 #if defined(HAVE_THYRA_COMPLEX) && defined(HAVE_THYRA_FLOAT)
00178     if( !Thyra::run_std_ops_tests<std::complex<float> >(local_dim,float(eps_scale*Teuchos::ScalarTraits<float>::eps()),dumpAll,verbose?&*out:NULL) ) success = false;
00179 #endif
00180 #if defined(HAVE_THYRA_COMPLEX)
00181     if( !Thyra::run_std_ops_tests<std::complex<double> >(local_dim,double(eps_scale*Teuchos::ScalarTraits<double>::eps()),dumpAll,verbose?&*out:NULL) ) success = false;
00182 #endif
00183 #ifdef HAVE_TEUCHOS_GNU_MP
00184     //if( !Thyra::run_std_ops_tests<mpf_class>(local_dim,mpf_class(max_rel_err),dumpAll,verbose?&*out:NULL) ) success = false;
00185     // RAB: 4/16/2005: We can not instantiate the above since rmax() is not supported by this types ScalarTraits class
00186     // and it is needed by the class RTOpPack::ROpMaxIndexLessThanBound.  This can be fixed using a template
00187     // conditional but I have not done this yet.
00188 #endif
00189 
00190   } // end try
00191   catch( const std::exception &excpt ) {
00192     if(verbose)
00193       std::cerr << "*** Caught a standard exception : " << excpt.what() << std::endl;
00194     success = false;
00195   }
00196   catch( ... ) {
00197     if(verbose)
00198       std::cerr << "*** Caught an unknown exception!\n";
00199     success = false;
00200   }
00201 
00202   if(verbose) {
00203     if(success)
00204       *out << "\nAll of the tests seem to have run successfully!\n";
00205     else
00206       *out << "\nOh no! at least one of the test failed!\n";  
00207   }
00208   
00209   return success ? 0 : 1;
00210 
00211 }

Generated on Wed May 12 21:26:53 2010 for Thyra Operator/Vector Support by  doxygen 1.4.7