Searched defs:NullaryOp (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h16 template<typename NullaryOp, typename PlainObjectType>
17 struct traits<CwiseNullaryOp<NullaryOp, PlainObjectType> > : traits<PlainObjectType>
31 * \tparam NullaryOp template functor implementing the operator
41 * The functor NullaryOp must expose one of the following method:
59 template<typename NullaryOp, typename PlainObjectType>
60 class CwiseNullaryOp : public internal::dense_xpr_base< CwiseNullaryOp<NullaryOp, PlainObjectType> >::type, internal::no_assignment_operator
68 CwiseNullaryOp(Index rows, Index cols, const NullaryOp& func = NullaryOp()) argument
84 const NullaryOp& functor() const { return m_functor; }
89 const NullaryOp m_functo
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorExpr.h31 template<typename NullaryOp, typename XprType>
32 struct traits<TensorCwiseNullaryOp<NullaryOp, XprType> >
51 template<typename NullaryOp, typename XprType>
52 class TensorCwiseNullaryOp : public TensorBase<TensorCwiseNullaryOp<NullaryOp, XprType>, ReadOnlyAccessors>
58 typedef TensorCwiseNullaryOp<NullaryOp, XprType> Nested;
62 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorCwiseNullaryOp(const XprType& xpr, const NullaryOp& func = NullaryOp()) argument
70 const NullaryOp& functor() const { return m_functor; }
74 const NullaryOp m_functor;

Completed in 186 milliseconds