Public Types | Public Member Functions | Protected Attributes | List of all members
Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > > Struct Template Reference

#include <PartialReduxEvaluator.h>

Inheritance diagram for Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >:
Inheritance graph
[legend]

Public Types

enum  { TraversalSize = Direction==int(Vertical) ? int(ArgType::RowsAtCompileTime) : int(ArgType::ColsAtCompileTime) }
 
enum  {
  CoeffReadCost, _ArgFlags = evaluator<ArgType>::Flags, _Vectorizable, Flags,
  Alignment = 0
}
 
typedef internal::nested_eval< ArgType, 1 >::type ArgTypeNested
 
typedef internal::remove_all< ArgTypeNested >::type ArgTypeNestedCleaned
 
typedef XprType::CoeffReturnType CoeffReturnType
 
typedef internal::add_const_on_value_type< ArgTypeNested >::type ConstArgTypeNested
 
typedef MemberOp::template Cost< int(TraversalSize)> CostOpType
 
typedef ArgType::Scalar InputScalar
 
typedef XprType::Scalar Scalar
 
typedef PartialReduxExpr< ArgType, MemberOp, Direction > XprType
 
- Public Types inherited from Eigen::internal::evaluator_base< PartialReduxExpr< ArgType, MemberOp, Direction > >
enum  
 
typedef traits< PartialReduxExpr< ArgType, MemberOp, Direction > > ExpressionTraits
 

Public Member Functions

EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar coeff (Index i, Index j) const
 
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar coeff (Index index) const
 
EIGEN_DEVICE_FUNC evaluator (const XprType xpr)
 
template<int LoadMode, typename PacketType >
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketType packet (Index i, Index j) const
 
template<int LoadMode, typename PacketType >
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC PacketType packet (Index idx) const
 
- Public Member Functions inherited from Eigen::internal::evaluator_base< PartialReduxExpr< ArgType, MemberOp, Direction > >
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE evaluator_base ()
 
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ~evaluator_base ()
 

Protected Attributes

ConstArgTypeNested m_arg
 
const MemberOp m_functor
 

Detailed Description

template<typename ArgType, typename MemberOp, int Direction>
struct Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >

Definition at line 132 of file PartialReduxEvaluator.h.

Member Typedef Documentation

◆ ArgTypeNested

template<typename ArgType , typename MemberOp , int Direction>
typedef internal::nested_eval<ArgType,1>::type Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::ArgTypeNested

Definition at line 136 of file PartialReduxEvaluator.h.

◆ ArgTypeNestedCleaned

template<typename ArgType , typename MemberOp , int Direction>
typedef internal::remove_all<ArgTypeNested>::type Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::ArgTypeNestedCleaned

Definition at line 138 of file PartialReduxEvaluator.h.

◆ CoeffReturnType

template<typename ArgType , typename MemberOp , int Direction>
typedef XprType::CoeffReturnType Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::CoeffReturnType

Definition at line 172 of file PartialReduxEvaluator.h.

◆ ConstArgTypeNested

template<typename ArgType , typename MemberOp , int Direction>
typedef internal::add_const_on_value_type<ArgTypeNested>::type Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::ConstArgTypeNested

Definition at line 137 of file PartialReduxEvaluator.h.

◆ CostOpType

template<typename ArgType , typename MemberOp , int Direction>
typedef MemberOp::template Cost<int(TraversalSize)> Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::CostOpType

Definition at line 144 of file PartialReduxEvaluator.h.

◆ InputScalar

template<typename ArgType , typename MemberOp , int Direction>
typedef ArgType::Scalar Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::InputScalar

Definition at line 139 of file PartialReduxEvaluator.h.

◆ Scalar

template<typename ArgType , typename MemberOp , int Direction>
typedef XprType::Scalar Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::Scalar

Definition at line 140 of file PartialReduxEvaluator.h.

◆ XprType

template<typename ArgType , typename MemberOp , int Direction>
typedef PartialReduxExpr<ArgType, MemberOp, Direction> Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::XprType

Definition at line 135 of file PartialReduxEvaluator.h.

Member Enumeration Documentation

◆ anonymous enum

template<typename ArgType , typename MemberOp , int Direction>
anonymous enum
Enumerator
TraversalSize 

Definition at line 141 of file PartialReduxEvaluator.h.

◆ anonymous enum

template<typename ArgType , typename MemberOp , int Direction>
anonymous enum
Enumerator
CoeffReadCost 
_ArgFlags 
_Vectorizable 
Flags 
Alignment 

Definition at line 145 of file PartialReduxEvaluator.h.

Constructor & Destructor Documentation

◆ evaluator()

template<typename ArgType , typename MemberOp , int Direction>
EIGEN_DEVICE_FUNC Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::evaluator ( const XprType  xpr)
inlineexplicit

Definition at line 165 of file PartialReduxEvaluator.h.

Member Function Documentation

◆ coeff() [1/2]

template<typename ArgType , typename MemberOp , int Direction>
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::coeff ( Index  i,
Index  j 
) const
inline

Definition at line 175 of file PartialReduxEvaluator.h.

◆ coeff() [2/2]

template<typename ArgType , typename MemberOp , int Direction>
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::coeff ( Index  index) const
inline

Definition at line 181 of file PartialReduxEvaluator.h.

◆ packet() [1/2]

template<typename ArgType , typename MemberOp , int Direction>
template<int LoadMode, typename PacketType >
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE PacketType Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::packet ( Index  i,
Index  j 
) const
inline

Definition at line 188 of file PartialReduxEvaluator.h.

◆ packet() [2/2]

template<typename ArgType , typename MemberOp , int Direction>
template<int LoadMode, typename PacketType >
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC PacketType Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::packet ( Index  idx) const
inline

Definition at line 195 of file PartialReduxEvaluator.h.

Member Data Documentation

◆ m_arg

template<typename ArgType , typename MemberOp , int Direction>
ConstArgTypeNested Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::m_arg
protected

Definition at line 224 of file PartialReduxEvaluator.h.

◆ m_functor

template<typename ArgType , typename MemberOp , int Direction>
const MemberOp Eigen::internal::evaluator< PartialReduxExpr< ArgType, MemberOp, Direction > >::m_functor
protected

Definition at line 225 of file PartialReduxEvaluator.h.


The documentation for this struct was generated from the following file:


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:44:36