/usr/include/trilinos/Phalanx_EvaluationContainer_Def.hpp is in libtrilinos-phalanx-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | // @HEADER
// ************************************************************************
//
// Phalanx: A Partial Differential Equation Field Evaluation
// Kernel for Flexible Management of Complex Dependency Chains
// Copyright 2008 Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Roger Pawlowski (rppawlo@sandia.gov), Sandia
// National Laboratories.
//
// ************************************************************************
// @HEADER
#ifndef PHX_EVALUATION_CONTAINER_DEF_HPP
#define PHX_EVALUATION_CONTAINER_DEF_HPP
#include "Teuchos_Assert.hpp"
#include "Phalanx_Traits.hpp"
#include "Phalanx_Evaluator.hpp"
#include "Phalanx_Evaluator_AliasField.hpp"
#include "Phalanx_TypeStrings.hpp"
#include "Phalanx_KokkosViewFactoryFunctor.hpp"
#include <sstream>
#include <stdexcept>
// *************************************************************************
template <typename EvalT, typename Traits>
PHX::EvaluationContainer<EvalT, Traits>::EvaluationContainer() :
post_registration_setup_called_(false)
{
this->dag_manager_.setEvaluationTypeName( PHX::typeAsString<EvalT>() );
}
// *************************************************************************
template <typename EvalT, typename Traits>
PHX::EvaluationContainer<EvalT, Traits>::~EvaluationContainer()
{
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
requireField(const PHX::FieldTag& f)
{
this->dag_manager_.requireField(f);
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
registerEvaluator(const Teuchos::RCP<PHX::Evaluator<Traits> >& p)
{
this->dag_manager_.registerEvaluator(p);
}
// **************************************************************************
template<typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
aliasField(const PHX::FieldTag& aliasedField,
const PHX::FieldTag& targetField)
{
// Check that dimensions are the same
TEUCHOS_TEST_FOR_EXCEPTION(aliasedField.dataLayout() != targetField.dataLayout(),
std::runtime_error,
"ERROR: The aliased field \"" << aliasedField.identifier()
<< "\" data layout does not match the target field \""
<< targetField.identifier() << "\" data layout!\n\n"
<< "Aliased Field DataLayout:\n" << aliasedField.dataLayout()
<< "Target Field DataLayout:\n" << targetField.dataLayout() << "\n");
// Check that the scalar types are the same
TEUCHOS_TEST_FOR_EXCEPTION(aliasedField.dataTypeInfo() != targetField.dataTypeInfo(),
std::runtime_error,
"ERROR: The aliased field \"" << aliasedField.identifier()
<< "\" scalar type does not match the target field \""
<< targetField.identifier() << "\" scalar type!\n");
Teuchos::RCP<PHX::Evaluator<Traits>> e =
Teuchos::rcp(new PHX::AliasField<EvalT,Traits>(aliasedField,targetField));
this->registerEvaluator(e);
// Store off to assign memory during allocation phase
aliased_fields_[aliasedField.identifier()] = targetField.identifier();
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
postRegistrationSetup(typename Traits::SetupData d,
PHX::FieldManager<Traits>& fm)
{
// Figure out all evaluator dependencies
if ( !(this->dag_manager_.sortingCalled()) )
this->dag_manager_.sortAndOrderEvaluators();
// Allocate memory for all fields that are needed
const std::vector< Teuchos::RCP<PHX::FieldTag> >& var_list =
this->dag_manager_.getFieldTags();
std::vector< Teuchos::RCP<PHX::FieldTag> >::const_iterator var;
for (var = var_list.begin(); var != var_list.end(); ++var) {
// skip allocation if this is an aliased field or an unmanaged field
if ( aliased_fields_.find((*var)->identifier()) == aliased_fields_.end() &&
unmanaged_fields_.find((*var)->identifier()) == unmanaged_fields_.end() ) {
typedef typename PHX::eval_scalar_types<EvalT>::type EvalDataTypes;
Sacado::mpl::for_each_no_kokkos<EvalDataTypes>(PHX::KokkosViewFactoryFunctor<EvalT>(fields_,*(*var),kokkos_extended_data_type_dimensions_));
TEUCHOS_TEST_FOR_EXCEPTION(fields_.find((*var)->identifier()) == fields_.end(),std::runtime_error,
"Error: PHX::EvaluationContainer::postRegistrationSetup(): could not build a Kokkos::View for field named \""
<< (*var)->name() << "\" of type \"" << (*var)->dataTypeInfo().name()
<< "\" for the evaluation type \"" << PHX::typeAsString<EvalT>() << "\".");
}
}
// Set the unmanaged field memory (not allocated above)
for (const auto& field : unmanaged_fields_)
fields_[field.first] = field.second;
// Assign aliased fields to the target field memory
for (const auto& field : aliased_fields_)
fields_[field.first] = fields_[field.second];
// Bind memory to all fields in all required evaluators
for (const auto& field : var_list)
this->bindField(*field,fields_[field->identifier()]);
// This needs to be set before the dag_manager calls each
// evaluator's postRegistrationSetup() so that the evaluators can
// use functions that are only valid after post registration setup
// is called (e.g query for kokkos extended data type dimensions).
post_registration_setup_called_ = true;
// Allow users to perform special setup. This used to include
// manually binding memory for all fields in the evaluators via
// setFieldData(). NOTE: users should not have to bind memory
// anymore in the postRegistrationSetup() as we now do it for them
// above.
this->dag_manager_.postRegistrationSetup(d,fm);
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
evaluateFields(typename Traits::EvalData d)
{
#ifdef PHX_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION( !(this->setupCalled()) , std::logic_error,
"You must call post registration setup for each evaluation type before calling the evaluateFields() method for that type!");
#endif
this->dag_manager_.evaluateFields(d);
}
// *************************************************************************
#ifdef PHX_ENABLE_KOKKOS_AMT
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
evaluateFieldsTaskParallel(const int& work_size,
typename Traits::EvalData d)
{
#ifdef PHX_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION( !(this->setupCalled()) , std::logic_error,
"You must call post registration setup for each evaluation type before calling the evaluateFields() method for that type!");
#endif
this->dag_manager_.evaluateFieldsTaskParallel(work_size,d);
}
#endif
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
preEvaluate(typename Traits::PreEvalData d)
{
#ifdef PHX_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION( !(this->setupCalled()) , std::logic_error,
"You must call post registration setup for each evaluation type before calling the preEvaluate() method for that type!");
#endif
this->dag_manager_.preEvaluate(d);
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
postEvaluate(typename Traits::PostEvalData d)
{
#ifdef PHX_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION( !(this->setupCalled()) , std::logic_error,
"You must call post registration setup for each evaluation type before calling the postEvaluate() method for that type!");
#endif
this->dag_manager_.postEvaluate(d);
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
setKokkosExtendedDataTypeDimensions(const std::vector<PHX::index_size_type>& dims)
{
kokkos_extended_data_type_dimensions_ = dims;
}
// *************************************************************************
template <typename EvalT, typename Traits>
const std::vector<PHX::index_size_type> & PHX::EvaluationContainer<EvalT, Traits>::
getKokkosExtendedDataTypeDimensions() const
{
#ifdef PHX_DEBUG
TEUCHOS_TEST_FOR_EXCEPTION( !(this->setupCalled()) , std::logic_error,
"You must call post registration setup for each evaluation type before calling the postEvaluate() method for that type!");
#endif
return kokkos_extended_data_type_dimensions_;
}
// *************************************************************************
template <typename EvalT, typename Traits>
PHX::any
PHX::EvaluationContainer<EvalT, Traits>::getFieldData(const PHX::FieldTag& f)
{
//return fields_[f.identifier()];
auto a = fields_.find(f.identifier());
if (a==fields_.end()){
std::cout << " PHX::EvaluationContainer<EvalT, Traits>::getFieldData can't find an f.identifier() "<< f.identifier() << std::endl;
}
return a->second;
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
setUnmanagedField(const PHX::FieldTag& f, const PHX::any& a)
{
// An unmanaged field is a MDField where the user has manually
// allocated the underlying memory for the field. If setup was
// already called, we need to reassign the memory and rebind all
// the evalautors that use the unmanaged field. If setup has not
// been called, then we can store off the memory and assign normally
// as part of the postRegistrationSetup() process.
if (this->setupCalled())
this->bindField(f,a);
else
unmanaged_fields_[f.identifier()] = a;
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
bindField(const PHX::FieldTag& f, const PHX::any& a)
{
auto s = fields_.find(f.identifier());
if (s == fields_.end()) {
std::stringstream st;
st << "\n ERROR in PHX::EvaluationContainer<EvalT, Traits>::bindField():\n"
<< " Failed to bind field: \"" << f.identifier() << "\"\n"
<< " for evaluation type \"" << PHX::typeAsString<EvalT>() << "\".\n"
<< " This field is not used in the Evaluation DAG.\n";
throw std::runtime_error(st.str());
}
// Set the new memory
fields_[f.identifier()] = a;
// Loop through evalautors and rebind the field
auto& evaluators = this->dag_manager_.getEvaluatorsBindingField(f);
for (auto& e : evaluators)
e->bindField(f,a);
}
// *************************************************************************
template <typename EvalT, typename Traits>
bool PHX::EvaluationContainer<EvalT, Traits>::setupCalled() const
{
return post_registration_setup_called_;
}
// *************************************************************************
template <typename EvalT, typename Traits>
const std::string PHX::EvaluationContainer<EvalT, Traits>::
evaluationType() const
{
return PHX::typeAsString<EvalT>();
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::print(std::ostream& os) const
{
std::string type = PHX::typeAsString<EvalT>();
os << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" << std::endl;
os << "Starting PHX::EvaluationContainer Output" << std::endl;
os << "Evaluation Type = " << type << std::endl;
os << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" << std::endl;
os << this->dag_manager_ << std::endl;
for (std::unordered_map<std::string,PHX::any>::const_iterator i =
fields_.begin(); i != fields_.end(); ++i)
os << i->first << std::endl;
os << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" << std::endl;
os << "Finished PHX::EvaluationContainer Output" << std::endl;
os << "Evaluation Type = " << type << std::endl;
os << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" << std::endl;
os << std::endl;
}
// *************************************************************************
template <typename EvalT, typename Traits>
void PHX::EvaluationContainer<EvalT, Traits>::
analyzeGraph(double& speedup, double& parallelizability) const
{
this->dag_manager_.analyzeGraph(speedup,parallelizability);
}
// *************************************************************************
#endif
|