|
Teko Version of the Day
|
00001 /* 00002 // @HEADER 00003 // 00004 // *********************************************************************** 00005 // 00006 // Teko: A package for block and physics based preconditioning 00007 // Copyright 2010 Sandia Corporation 00008 // 00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00010 // the U.S. Government retains certain rights in this software. 00011 // 00012 // Redistribution and use in source and binary forms, with or without 00013 // modification, are permitted provided that the following conditions are 00014 // met: 00015 // 00016 // 1. Redistributions of source code must retain the above copyright 00017 // notice, this list of conditions and the following disclaimer. 00018 // 00019 // 2. Redistributions in binary form must reproduce the above copyright 00020 // notice, this list of conditions and the following disclaimer in the 00021 // documentation and/or other materials provided with the distribution. 00022 // 00023 // 3. Neither the name of the Corporation nor the names of the 00024 // contributors may be used to endorse or promote products derived from 00025 // this software without specific prior written permission. 00026 // 00027 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00028 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00029 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00030 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00031 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00032 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00033 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00034 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00035 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00036 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00037 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00038 // 00039 // Questions? Contact Eric C. Cyr (eccyr@sandia.gov) 00040 // 00041 // *********************************************************************** 00042 // 00043 // @HEADER 00044 00045 */ 00046 00047 // Teko includes 00048 #include "Teko_DiagnosticPreconditionerFactory.hpp" 00049 00050 #include "Teko_PreconditionerInverseFactory.hpp" 00051 #include "Teko_DiagnosticLinearOp.hpp" 00052 00053 #include "Teuchos_TimeMonitor.hpp" 00054 00055 namespace Teko { 00056 00058 DiagnosticPreconditionerFactory::DiagnosticPreconditionerFactory() 00059 : outputStream_(Teko::getOutputStream()), invFactory_(Teuchos::null), diagString_("<label me!>"), printResidual_(false) 00060 { } 00061 00065 DiagnosticPreconditionerFactory::DiagnosticPreconditionerFactory(const Teuchos::RCP<Teko::InverseFactory> & invFactory, const std::string & label, 00066 const Teuchos::RCP<std::ostream> & os,bool printResidual) 00067 : outputStream_(Teko::getOutputStream()), invFactory_(invFactory), diagString_(label), printResidual_(printResidual) 00068 { 00069 initTimers(diagString_); 00070 00071 if(os!=Teuchos::null) 00072 outputStream_ = os; 00073 } 00074 00075 DiagnosticPreconditionerFactory::~DiagnosticPreconditionerFactory() 00076 { 00077 // check timers for null 00078 if(buildTimer_==Teuchos::null || rebuildTimer_==Teuchos::null) { 00079 // (*outputStream_) << "DiagnosticPreconditionerFactory \"" << diagString_ << "\": " 00080 // << "Timers not initialized" << std::endl; 00081 00082 return; 00083 } 00084 00085 double initBuildTime = totalInitialBuildTime(); 00086 int initBuilds = numInitialBuilds(); 00087 00088 double initRebuildTime = totalRebuildTime(); 00089 int initRebuilds = numRebuilds(); 00090 00091 (*outputStream_) << "DiagnosticPreconditionerFactory \"" << diagString_ << "\":\n"; 00092 00093 // print build string 00094 (*outputStream_) << " build elapsed = " << initBuildTime << ", " 00095 << "num builds = " << initBuilds << ", "; 00096 if(initBuilds>0) 00097 (*outputStream_) << "timer/app = " << initBuildTime / double(initBuilds) << "\n"; 00098 else 00099 (*outputStream_) << "timer/app = " << "none" << "\n"; 00100 00101 // print rebuild string 00102 (*outputStream_) << " rebuild elapsed = " << initRebuildTime << ", " 00103 << "num rebuilds = " << initRebuilds << ", "; 00104 if(initRebuilds>0) 00105 (*outputStream_) << "timer/app = " << initRebuildTime / double(initRebuilds) << "\n"; 00106 else 00107 (*outputStream_) << "timer/app = " << "none" << "\n"; 00108 00109 // print total string 00110 (*outputStream_) << " total elapsed = " << initRebuildTime+initBuildTime << ", " 00111 << "num rebuilds = " << initRebuilds+initBuilds << ", "; 00112 if(initBuilds+initRebuilds>0) 00113 (*outputStream_) << "timer/app = " << (initRebuildTime+initBuildTime) / double(initRebuilds+initBuilds) << std::endl; 00114 else 00115 (*outputStream_) << "timer/app = " << "none" << std::endl; 00116 } 00117 00121 LinearOp DiagnosticPreconditionerFactory::buildPreconditionerOperator(LinearOp & lo,PreconditionerState & state) const 00122 { 00123 using Teuchos::RCP; 00124 using Teuchos::rcp_dynamic_cast; 00125 00126 TEST_FOR_EXCEPTION(invFactory_==Teuchos::null,std::runtime_error, 00127 "ERROR: Teko::DiagnosticPreconditionerFactory::buildPreconditionerOperator requires that an " 00128 << "inverse factory has been set. Currently it is null!"); 00129 00130 TEST_FOR_EXCEPTION(buildTimer_==Teuchos::null || rebuildTimer_==Teuchos::null,std::runtime_error, 00131 "ERROR: Teko::DiagnosticPreconditionerFactory::buildPreconditionerOperator requires that " 00132 << "the timers be initialized. Currently they are null! (label = \"" << diagString_ << "\")"); 00133 00134 // build user specified preconditioner 00135 ModifiableLinearOp & diagOp_ptr = state.getModifiableOp("diagnosticOp"); 00136 00137 if(diagOp_ptr==Teuchos::null) { 00138 ModifiableLinearOp invOp; 00139 { 00140 // start timer on construction, end on destruction 00141 Teuchos::TimeMonitor monitor(*buildTimer_,false); 00142 00143 invOp = Teko::buildInverse(*invFactory_,lo,state); 00144 } 00145 00146 // only printing residual requires use of forward operator 00147 if(printResidual_) 00148 diagOp_ptr = createDiagnosticLinearOp(outputStream_,lo,invOp,diagString_); 00149 else 00150 diagOp_ptr = createDiagnosticLinearOp(outputStream_,invOp,diagString_); 00151 } 00152 else { 00153 RCP<DiagnosticLinearOp> diagOp = rcp_dynamic_cast<DiagnosticLinearOp>(diagOp_ptr); 00154 00155 // only printing residual requires use of forward operator 00156 if(printResidual_) 00157 diagOp->setForwardOp(lo); 00158 00159 ModifiableLinearOp invOp = diagOp->getModifiableOp(); 00160 { 00161 // start timer on construction, end on destruction 00162 Teuchos::TimeMonitor monitor(*rebuildTimer_,false); 00163 00164 Teko::rebuildInverse(*invFactory_,lo,invOp); 00165 } 00166 } 00167 00168 return diagOp_ptr.getConst(); 00169 } 00170 00174 void DiagnosticPreconditionerFactory::initializeFromParameterList(const Teuchos::ParameterList & settings) 00175 { 00176 TEST_FOR_EXCEPTION(not settings.isParameter("Inverse Factory"),std::runtime_error, 00177 "Parameter \"Inverse Factory\" is required by a Teko::DiagnosticPreconditionerFactory"); 00178 TEST_FOR_EXCEPTION(not settings.isParameter("Descriptive Label"),std::runtime_error, 00179 "Parameter \"Descriptive Label\" is required by a Teko::DiagnosticPreconditionerFactory"); 00180 00181 // grab library and preconditioner name 00182 std::string invName = settings.get<std::string>("Inverse Factory"); 00183 diagString_ = settings.get<std::string>("Descriptive Label"); 00184 00185 // build preconditioner factory 00186 Teuchos::RCP<const InverseLibrary> il = getInverseLibrary(); 00187 invFactory_ = il->getInverseFactory(invName); 00188 TEST_FOR_EXCEPTION(invFactory_==Teuchos::null,std::runtime_error, 00189 "ERROR: \"Inverse Factory\" = " << invName 00190 << " could not be found"); 00191 00192 if(settings.isParameter("Print Residual")) 00193 printResidual_ = settings.get<bool>("Print Residual"); 00194 00195 // build timers to use 00196 initTimers(diagString_); 00197 } 00198 00202 Teuchos::RCP<Teuchos::ParameterList> DiagnosticPreconditionerFactory::getRequestedParameters() const 00203 { 00204 TEST_FOR_EXCEPTION(invFactory_==Teuchos::null,std::runtime_error, 00205 "ERROR: Teko::DiagnosticPreconditionerFactory::getRequestedParameters requires that a " 00206 << "preconditioner factory has been set. Currently it is null!"); 00207 00208 return invFactory_->getRequestedParameters(); 00209 } 00210 00213 bool DiagnosticPreconditionerFactory::updateRequestedParameters(const Teuchos::ParameterList & pl) 00214 { 00215 TEST_FOR_EXCEPTION(invFactory_==Teuchos::null,std::runtime_error, 00216 "ERROR: Teko::DiagnosticPreconditionerFactory::updateRequestedParameters requires that a " 00217 << "preconditioner factory has been set. Currently it is null!"); 00218 00219 return invFactory_->updateRequestedParameters(pl); 00220 } 00221 00222 void DiagnosticPreconditionerFactory::initTimers(const std::string & str) 00223 { 00224 buildTimer_ = Teuchos::rcp(new Teuchos::Time(str+" buildTimer")); 00225 rebuildTimer_ = Teuchos::rcp(new Teuchos::Time(str+" rebuildTimer")); 00226 } 00227 00228 } // end namespace Teko
1.7.4