/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorFixedSize.h | 70 …CE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherIndices) const in coeff() argument 73 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 1 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in coeff() 74 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeff() 102 …IGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar& coeffRef(Index firstIndex, IndexTypes... otherIndices) in coeffRef() argument 105 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 1 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in coeffRef() 106 return coeffRef(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeffRef() 133 …NC EIGEN_STRONG_INLINE const Scalar& operator()(Index firstIndex, IndexTypes... otherIndices) const in operator() 136 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 1 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in operator() 137 return this->operator()(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in operator() 218 …EN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar& operator()(Index firstIndex, IndexTypes... otherIndices) in operator() [all …]
|
D | Tensor.h | 115 …C inline const Scalar& coeff(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) const in coeff() argument 118 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 2 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in coeff() 119 return coeff(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in coeff() 155 inline Scalar& coeffRef(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) in coeffRef() argument 158 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 2 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in coeffRef() 159 return coeffRef(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in coeffRef() 195 …inline const Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) c… in operator() 198 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 2 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in operator() 199 return this->operator()(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in operator() 262 inline Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) in operator() [all …]
|
D | TensorMap.h | 150 …INE const Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) const in operator() 152 EIGEN_STATIC_ASSERT(sizeof...(otherIndices) + 2 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in operator() 154 …m_dimensions.IndexOfRowMajor(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in operator() 157 …m_dimensions.IndexOfColMajor(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in operator() 237 …N_STRONG_INLINE Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) in operator() 239 …static_assert(sizeof...(otherIndices) + 2 == NumIndices || NumIndices == Dynamic, "Number of indic… in operator() 240 const std::size_t NumDims = sizeof...(otherIndices) + 2; in operator() 242 … = m_dimensions.IndexOfRowMajor(array<Index, NumDims>{{firstIndex, secondIndex, otherIndices...}}); in operator() 245 … = m_dimensions.IndexOfColMajor(array<Index, NumDims>{{firstIndex, secondIndex, otherIndices...}}); in operator()
|
D | TensorRef.h | 198 EIGEN_STRONG_INLINE const Scalar operator()(Index firstIndex, IndexTypes... otherIndices) const in operator() 200 const std::size_t num_indices = (sizeof...(otherIndices) + 1); in operator() 201 const array<Index, num_indices> indices{{firstIndex, otherIndices...}}; in operator() 205 EIGEN_STRONG_INLINE Scalar& coeffRef(Index firstIndex, IndexTypes... otherIndices) in coeffRef() argument 207 const std::size_t num_indices = (sizeof...(otherIndices) + 1); in coeffRef() 208 const array<Index, num_indices> indices{{firstIndex, otherIndices...}}; in coeffRef()
|
D | README.md | 740 const Scalar& operator()(Index firstIndex, IndexTypes... otherIndices) 742 Scalar& operator()(Index firstIndex, IndexTypes... otherIndices)
|
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
D | StaticSymmetry.h | 217 …> operator()(Tensor_& tensor, typename Tensor_::Index firstIndex, IndexTypes... otherIndices) const 219 …static_assert(sizeof...(otherIndices) + 1 == Tensor_::NumIndices, "Number of indices used to acces… 220 …)(tensor, std::array<typename Tensor_::Index, Tensor_::NumIndices>{{firstIndex, otherIndices...}});
|
D | DynamicSymmetry.h | 55 …> operator()(Tensor_& tensor, typename Tensor_::Index firstIndex, IndexTypes... otherIndices) const in operator() 57 …static_assert(sizeof...(otherIndices) + 1 == Tensor_::NumIndices, "Number of indices used to acces… in operator() 58 …)(tensor, std::array<typename Tensor_::Index, Tensor_::NumIndices>{{firstIndex, otherIndices...}}); in operator()
|