RTOp Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOpPack_TOpPairWiseMaxUpdate.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // RTOp: Interfaces and Support Software for Vector Reduction Transformation
4 // Operations
5 //
6 // Copyright 2006 NTESS and the RTOp contributors.
7 // SPDX-License-Identifier: BSD-3-Clause
8 // *****************************************************************************
9 // @HEADER
10 
11 #ifndef RTOPPACK_TOP_PAIR_WISE_MAX_UPDATE_HPP
12 #define RTOPPACK_TOP_PAIR_WISE_MAX_UPDATE_HPP
13 
14 #include "RTOpPack_RTOpTHelpers.hpp"
15 
16 
17 namespace RTOpPack {
18 
19 
21 template<class Scalar>
23 {
24 public:
26  : alpha_(alpha)
27  {}
28  void operator()( const Scalar &v0, Scalar &z0 ) const
29  {
30  z0 = alpha_ * std::max(z0, v0);
31  }
32 private:
33  Scalar alpha_;
34 };
35 
36 
40 template<class Scalar>
42  : public TOp_1_1_Base<Scalar, TOpPairWiseMaxUpdatePairWiseTransformation<Scalar> >
43 {
44 public:
47  TOpPairWiseMaxUpdate( const Scalar &alpha )
49  {
50  this->setOpNameBase("TOpPairWiseMaxUpdate");
51  }
52 };
53 
54 
55 } // namespace RTOpPack
56 
57 
58 #endif // RTOPPACK_TOP_PAIR_WISE_MAX_UPDATE_HPP
TOp_1_1_Base< Scalar, TOpPairWiseMaxUpdatePairWiseTransformation< Scalar > > base_t
Pair-wise Maximum update transformation operator: z0[i] = alpha*max(z0[i],v0[i]), i=0...
Pair-wise transformation operator for TOpPairWiseMaxUpdate.
Base class for transformations for 1 input and 1 output vector.
void setOpNameBase(const std::string &op_name_base)
Just set the operator name.