/usr/include/trilinos/RTOpPack_RTOpTHelpers_def.hpp is in libtrilinos-rtop-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 | // @HEADER
// ***********************************************************************
//
// RTOp: Interfaces and Support Software for Vector Reduction Transformation
// Operations
// Copyright (2006) 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 Roscoe A. Bartlett (rabartl@sandia.gov)
//
// ***********************************************************************
// @HEADER
#ifndef RTOPPACK_RTOP_T_HELPERS_DEF_HPP
#define RTOPPACK_RTOP_T_HELPERS_DEF_HPP
#include "RTOpPack_RTOpTHelpers_decl.hpp"
namespace RTOpPack {
//
// DefaultReductTarget
//
template<class ConcreteReductObj>
std::string DefaultReductTarget<ConcreteReductObj>::description() const
{
std::ostringstream oss;
oss
<< "RTOpPack::DefaultReductTarget<"
<<TypeNameTraits<ConcreteReductObj>::name()<<">"
<< "{concreteReductObj="<<concreteReductObj_<<"}";
return oss.str();
}
} // namespace RTOpPack
template<class Scalar>
void RTOpPack::validate_apply_op(
const RTOpT<Scalar> &op,
const int allowed_num_sub_vecs,
const int allowed_num_targ_sub_vecs,
const bool expect_reduct_obj,
const ArrayView<const ConstSubVectorView<Scalar> > &sub_vecs,
const ArrayView<const SubVectorView<Scalar> > &targ_sub_vecs,
const Ptr<const ReductTarget> &reduct_obj
)
{
using Teuchos::as;
const int num_sub_vecs = sub_vecs.size();
const int num_targ_sub_vecs = targ_sub_vecs.size();
const std::string op_name_str = "op.name() = " + op.op_name();
if (allowed_num_sub_vecs >= 0) {
TEUCHOS_TEST_FOR_EXCEPTION( allowed_num_sub_vecs != as<int>(sub_vecs.size()),
InvalidNumVecs,
op_name_str<<": Error, sub_vecs.size()="<<sub_vecs.size()
<<" != allowed_num_sub_vecs="<<allowed_num_sub_vecs<<"!" );
}
if (allowed_num_targ_sub_vecs >= 0) {
TEUCHOS_TEST_FOR_EXCEPTION( allowed_num_targ_sub_vecs != as<int>(targ_sub_vecs.size()),
InvalidNumTargVecs,
op_name_str<<": Error, targ_sub_vecs.size()="<<targ_sub_vecs.size()
<<" != allowed_num_targ_sub_vecs="<<allowed_num_targ_sub_vecs<<"!" );
}
TEUCHOS_TEST_FOR_EXCEPTION( sub_vecs.size() == 0 && targ_sub_vecs.size() == 0,
InvalidNumVecs,
op_name_str<<": Error, apply_op(...) must be passed some vectors!"
);
const index_type subDim =
(sub_vecs.size() ? sub_vecs[0].subDim() : targ_sub_vecs[0].subDim());
const index_type globalOffset =
(sub_vecs.size() ? sub_vecs[0].globalOffset() : targ_sub_vecs[0].globalOffset());
for (int k = 0; k < num_sub_vecs; ++k ) {
TEUCHOS_TEST_FOR_EXCEPTION(
sub_vecs[k].subDim() != subDim || sub_vecs[k].globalOffset() != globalOffset,
IncompatibleVecs,
op_name_str<<": Error, sub_vec["<<k<<"] "
"(subDim="<<sub_vecs[k].subDim()<<",globalOffset="<<sub_vecs[k].globalOffset()<<")"
" is not compatible with (subDim="<<subDim<<",globalOffset="<<globalOffset<<")!"
);
}
for (int k = 0; k < num_targ_sub_vecs; ++k ) {
TEUCHOS_TEST_FOR_EXCEPTION(
targ_sub_vecs[k].subDim() != subDim || targ_sub_vecs[k].globalOffset() != globalOffset,
IncompatibleVecs,
op_name_str<<": Error, sub_vec["<<k<<"] "
"(subDim="<<targ_sub_vecs[k].subDim()<<",globalOffset="<<targ_sub_vecs[k].globalOffset()<<")"
" is not compatible with (subDim="<<subDim<<",globalOffset="<<globalOffset<<")!"
);
}
if (expect_reduct_obj) {
TEUCHOS_TEST_FOR_EXCEPTION( is_null(reduct_obj),
IncompatibleReductObj,
op_name_str<<": Error, expected a reduction target object!"
);
const RCP<ReductTarget> dummy_reduct_obj = op.reduct_obj_create();
// mfh 22 Sep 2015: Clang 3.6 warns when typeid's expression may
// have side effects. In this case, Ptr::operator* may throw in a
// debug build if the pointer inside is NULL. (Throwing an
// exception counts as a side effect here.)
//
// const std::type_info &reduct_obj_type = typeid(*reduct_obj);
// const std::type_info &dummy_reduct_obj_type = typeid(*dummy_reduct_obj);
const ReductTarget& reduct_obj_thing = *reduct_obj;
const std::type_info& reduct_obj_type = typeid (reduct_obj_thing);
ReductTarget& dummy_reduct_obj_thing = *dummy_reduct_obj;
const std::type_info& dummy_reduct_obj_type = typeid (dummy_reduct_obj_thing);
TEUCHOS_TEST_FOR_EXCEPTION( reduct_obj_type != dummy_reduct_obj_type,
IncompatibleReductObj,
op_name_str<<": Error, the type of the input reduct_obj = "
<<Teuchos::demangleName(reduct_obj_type.name())<<" is not equal to"
" the expected type "<<Teuchos::demangleName(dummy_reduct_obj_type.name())
<<"!"
);
}
}
//
// Explicit Instantiation Macro
//
#define RTOPPACK_RTOPT_HELPERS_DEFAULTREDUCTTARGET_INSTANT(SCALAR) \
\
template std::string DefaultReductTarget<SCALAR >::description() const;
#define RTOPPACK_RTOPT_HELPERS_INSTANT_SCALAR(SCALAR) \
\
RTOPPACK_RTOPT_HELPERS_DEFAULTREDUCTTARGET_INSTANT(SCALAR) \
\
RTOPPACK_RTOPT_HELPERS_DEFAULTREDUCTTARGET_INSTANT(ScalarIndex<SCALAR >) \
\
RTOPPACK_RTOPT_HELPERS_DEFAULTREDUCTTARGET_INSTANT(SubVectorView<SCALAR >) \
\
template void validate_apply_op<SCALAR >( \
const RTOpT<SCALAR > &op, \
const int allowed_num_sub_vecs, \
const int allowed_num_targ_sub_vecs, \
const bool expect_reduct_obj, \
const ArrayView<const ConstSubVectorView<SCALAR > > &sub_vecs, \
const ArrayView<const SubVectorView<SCALAR > > &targ_sub_vecs, \
const Ptr<const ReductTarget> &reduct_obj \
); \
\
#endif // RTOPPACK_RTOP_T_HELPERS_DEF_HPP
|