Searched refs:otherDimensions (Results 1 – 3 of 3) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | Tensor.h | 341 … EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tensor(Index firstDimension, IndexTypes... otherDimensions) in Tensor() argument 342 : m_storage(firstDimension, otherDimensions...) in Tensor() 345 … EIGEN_STATIC_ASSERT(sizeof...(otherDimensions) + 1 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in Tensor() 423 void resize(Index firstDimension, IndexTypes... otherDimensions) in resize() argument 426 … EIGEN_STATIC_ASSERT(sizeof...(otherDimensions) + 1 == NumIndices, YOU_MADE_A_PROGRAMMING_MISTAKE) in resize() 427 resize(array<Index, NumIndices>{{firstDimension, otherDimensions...}}); in resize()
|
D | TensorMap.h | 67 …Index firstDimension, IndexTypes... otherDimensions) : m_data(dataPtr), m_dimensions(firstDimensio… in TensorMap() argument 69 …EIGEN_STATIC_ASSERT((sizeof...(otherDimensions) + 1 == NumIndices || NumIndices == Dynamic), YOU_M… in TensorMap()
|
D | TensorDimensions.h | 287 …seIndex secondDimension, IndexTypes... otherDimensions) : Base({{firstDimension, secondDimension, … 288 EIGEN_STATIC_ASSERT(sizeof...(otherDimensions) + 2 == NumDims, YOU_MADE_A_PROGRAMMING_MISTAKE)
|