|
Tpetra Matrix/Vector Services
Version of the Day
|
00001 /* 00002 // @HEADER 00003 // *********************************************************************** 00004 // 00005 // Tpetra: Templated Linear Algebra Services Package 00006 // Copyright (2008) Sandia Corporation 00007 // 00008 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00009 // the U.S. Government retains certain rights in this software. 00010 // 00011 // Redistribution and use in source and binary forms, with or without 00012 // modification, are permitted provided that the following conditions are 00013 // met: 00014 // 00015 // 1. Redistributions of source code must retain the above copyright 00016 // notice, this list of conditions and the following disclaimer. 00017 // 00018 // 2. Redistributions in binary form must reproduce the above copyright 00019 // notice, this list of conditions and the following disclaimer in the 00020 // documentation and/or other materials provided with the distribution. 00021 // 00022 // 3. Neither the name of the Corporation nor the names of the 00023 // contributors may be used to endorse or promote products derived from 00024 // this software without specific prior written permission. 00025 // 00026 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00027 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00028 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00029 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00030 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00031 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00032 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00033 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00034 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00035 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00036 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00037 // 00038 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00039 // 00040 // ************************************************************************ 00041 // @HEADER 00042 */ 00043 00044 #include <Teuchos_CommandLineProcessor.hpp> 00045 #include <Teuchos_GlobalMPISession.hpp> 00046 #include <Teuchos_oblackholestream.hpp> 00047 #include <Teuchos_XMLParameterListHelpers.hpp> 00048 00049 #include <Tpetra_DefaultPlatform.hpp> 00050 #include <Tpetra_HybridPlatform.hpp> 00051 #include <TpetraExt_TypeStack.hpp> 00052 00053 #include <iostream> 00054 00055 #include <qd/qd_real.h> 00056 00057 #include "MultiPrecDriver.hpp" 00058 00063 int main(int argc, char *argv[]) 00064 { 00065 using Teuchos::RCP; 00066 using Teuchos::rcp; 00067 using Teuchos::Comm; 00068 using Teuchos::ParameterList; 00069 00070 // 00071 // Get the communicator 00072 // 00073 Teuchos::oblackholestream blackhole; 00074 Teuchos::GlobalMPISession mpiSession(&argc,&argv,&blackhole); 00075 auto comm = Tpetra::DefaultPlatform::getDefaultPlatform().getComm(); 00076 const int myImageID = comm->getRank(); 00077 00078 // 00079 // Get example parameters from command-line processor 00080 // 00081 bool verbose = (myImageID==0); 00082 bool unfused = false; 00083 std::string matfile; 00084 std::string xmlfile; 00085 std::string machineFile; 00086 Teuchos::CommandLineProcessor cmdp(false,true); 00087 cmdp.setOption("verbose","quiet",&verbose,"Print messages and results."); 00088 cmdp.setOption("matrix-file",&matfile,"Filename for matrix"); 00089 cmdp.setOption("param-file", &xmlfile,"XML file for solver parameters"); 00090 cmdp.setOption("machine-file",&machineFile,"Filename for XML machine description file."); 00091 cmdp.setOption("unfused","no-unfused",&unfused,"Test unfused iteration."); 00092 if (cmdp.parse(argc,argv) != Teuchos::CommandLineProcessor::PARSE_SUCCESSFUL) { 00093 return -1; 00094 } 00095 00096 // 00097 // read machine file and initialize platform 00098 // 00099 RCP<Teuchos::ParameterList> machinePL = Teuchos::parameterList(); 00100 std::string defaultMachine( 00101 " <ParameterList> " 00102 " <ParameterList name='%1=0'> " 00103 " <Parameter name='NodeType' type='string' value='Kokkos::SerialNode'/> " 00104 " </ParameterList> " 00105 " </ParameterList> " 00106 ); 00107 Teuchos::updateParametersFromXmlString(defaultMachine,machinePL.ptr()); 00108 if (machineFile != "") Teuchos::updateParametersFromXmlFile(machineFile,machinePL.ptr()); 00109 00110 // 00111 // create the platform object 00112 // 00113 Tpetra::HybridPlatform platform(comm,*machinePL); 00114 00115 // 00116 // Define the type stack 00117 // 00118 TPETRAEXT_TYPESTACK3(MPStack, qd_real, dd_real, double ) 00119 00120 // 00121 // instantiate a driver on the scalar stack 00122 // 00123 MultiPrecDriver<MPStack> driver; 00124 // hand output stream to driver 00125 if (verbose) driver.out = Teuchos::getFancyOStream(Teuchos::rcp(&std::cout,false)); 00126 else driver.out = Teuchos::getFancyOStream(Teuchos::rcp(new Teuchos::oblackholestream())); 00127 // hand matrix file to driver 00128 driver.matrixFile = matfile; 00129 // other params 00130 driver.unfusedTest = unfused; 00131 00132 // 00133 // get the solver parameters 00134 // 00135 RCP<Teuchos::ParameterList> params = Teuchos::parameterList(); 00136 // default solver stack parameters 00137 std::string xmlString( 00138 " <ParameterList> \n" 00139 " <Parameter name='tolerance' value='1e-60' type='double'/> \n" 00140 " <Parameter name='verbose' value='2' type='int'/> \n" 00141 " <ParameterList name='child'> \n" 00142 " <Parameter name='tolerance' value='1e-28' type='double'/> \n" 00143 " <Parameter name='verbose' value='2' type='int'/> \n" 00144 " <ParameterList name='child'> \n" 00145 " <Parameter name='tolerance' value='1e-14' type='double'/> \n" 00146 " <Parameter name='verbose' value='0' type='int'/> \n" 00147 " <Parameter name='Extract Diagonal' value='true' type='bool'/> \n" 00148 " </ParameterList> \n" 00149 " </ParameterList> \n" 00150 " </ParameterList> \n" 00151 ); 00152 Teuchos::updateParametersFromXmlString(xmlString,params.ptr()); 00153 if (xmlfile != "") Teuchos::updateParametersFromXmlFile(xmlfile,params.ptr()); 00154 // hand solver parameters to driver 00155 driver.params = params; 00156 00157 // 00158 // run the driver 00159 // 00160 platform.runUserCode(driver); 00161 00162 // 00163 // Print result 00164 if (driver.testPassed) { 00165 *driver.out << "End Result: TEST PASSED" << std::endl; 00166 } 00167 00168 return 0; 00169 } 00170
1.7.6.1