Home
last modified time | relevance | path

Searched refs:TensorShufflingOp (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorShuffling.h24 struct traits<TensorShufflingOp<Shuffle, XprType> > : public traits<XprType>
37 struct eval<TensorShufflingOp<Shuffle, XprType>, Eigen::Dense>
39 typedef const TensorShufflingOp<Shuffle, XprType>& type;
43 struct nested<TensorShufflingOp<Shuffle, XprType>, 1, typename eval<TensorShufflingOp<Shuffle, XprT…
45 typedef TensorShufflingOp<Shuffle, XprType> type;
53 class TensorShufflingOp : public TensorBase<TensorShufflingOp<Shuffle, XprType> >
56 typedef typename Eigen::internal::traits<TensorShufflingOp>::Scalar Scalar;
59 typedef typename Eigen::internal::nested<TensorShufflingOp>::type Nested;
60 typedef typename Eigen::internal::traits<TensorShufflingOp>::StorageKind StorageKind;
61 typedef typename Eigen::internal::traits<TensorShufflingOp>::Index Index;
[all …]
DTensorBase.h778 const TensorShufflingOp<const Shuffle, const Derived>
780 return TensorShufflingOp<const Shuffle, const Derived>(derived(), shuffle); in shuffle()
974 const TensorShufflingOp<const Shuffle, const Derived>
976 return TensorShufflingOp<const Shuffle, const Derived>(derived(), shuffle); in shuffle()
979 TensorShufflingOp<const Shuffle, Derived>
981 return TensorShufflingOp<const Shuffle, Derived>(derived(), shuffle); in shuffle()
DTensorForwardDeclarations.h54 template<typename Shuffle, typename XprType> class TensorShufflingOp; variable