Home
last modified time | relevance | path

Searched refs:IsColMajor (Results 1 – 13 of 13) sorted by relevance

/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockSparseMatrix.h86 template<typename Iterator, bool IsColMajor>
91 { if(IsColMajor)
301 IsColMajor = Flags&RowMajorBit ? 0 : 1
303 …typedef Matrix<Scalar, _BlockAtCompileTime, _BlockAtCompileTime,IsColMajor ? ColMajor : RowMajor> …
304 …typedef Matrix<RealScalar, _BlockAtCompileTime, _BlockAtCompileTime,IsColMajor ? ColMajor : RowMaj…
306 …typedef BlockSparseMatrix<Scalar, BlockSize, IsColMajor ? ColMajor : RowMajor, StorageIndex> Plain…
321 : m_innerBSize(IsColMajor ? brow : bcol),
322 m_outerBSize(IsColMajor ? bcol : brow),
409 eigen_assert(((MatrixType::Options&RowMajorBit) != IsColMajor) && "Wrong storage order");
540 m_innerBSize = IsColMajor ? brow : bcol;
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorPadding.h247 static const bool IsColMajor = Layout == static_cast<int>(ColMajor);
248 const int inner_dim_idx = IsColMajor ? 0 : NumDims - 1;
255 const int dim = IsColMajor ? i : NumDims - i - 1;
256 const int stride_dim = IsColMajor ? dim : dim + 1;
265 const int dim = IsColMajor ? i : NumDims - i - 1;
274 const int dim = IsColMajor ? i : NumDims - i - 1;
295 const int dim = IsColMajor ? i + 1 : NumDims - i - 2;
351 const int dim = IsColMajor ? i : NumDims - i - 1;
374 const int squeeze_dim = IsColMajor ? inner_dim_idx + 1 : inner_dim_idx - 1;
392 const int dim = IsColMajor ? j : NumDims - j - 1;
[all …]
DTensorBroadcasting.h653 const Index dim = IsColMajor ? i : NumDims - 1 - i;
704 static const bool IsColMajor =
773 const int dim = IsColMajor ? i : NumDims - i - 1;
790 const int dim = IsColMajor ? i : NumDims - i - 1;
794 const int dim = IsColMajor ? i : NumDims - i - 1;
819 const int dim = IsColMajor ? i : NumDims - i - 1;
821 const int copy_dim = IsColMajor ? 2 * i : 2 * NumDims - 2 * i - 1;
822 const int broadcast_dim = IsColMajor ? copy_dim + 1 : copy_dim - 1;
834 const int dim = IsColMajor ? i : 2 * NumDims - i - 1;
865 IsColMajor ? 2 * params.inner_dim_count + 1
[all …]
DTensorBlock.h1144 static const bool IsColMajor = (Layout == ColMajor);
1190 int inner_dim = IsColMajor ? 0 : NumDims - 1;
1214 const int dst_dim = IsColMajor ? i : NumDims - i - 1;
1226 const int dst_stride1_dim = IsColMajor
1240 const int dst_dim = IsColMajor ? i : NumDims - i - 1;
1264 const int dst_dim = IsColMajor ? i + 1 : NumDims - i - 2;
1352 const int dim = IsColMajor ? i : NumDims - i - 1;
/external/ruy/ruy/
Dpack_arm.h154 RUY_DCHECK(IsColMajor(src_matrix.layout));
155 RUY_DCHECK(IsColMajor(packed_matrix->layout));
237 RUY_DCHECK(IsColMajor(src_matrix.layout));
238 RUY_DCHECK(IsColMajor(packed_matrix->layout));
286 RUY_DCHECK(IsColMajor(src_matrix.layout));
287 RUY_DCHECK(IsColMajor(packed_matrix->layout));
367 RUY_DCHECK(IsColMajor(src_matrix.layout));
368 RUY_DCHECK(IsColMajor(packed_matrix->layout));
443 RUY_DCHECK(IsColMajor(src_matrix.layout));
444 RUY_DCHECK(IsColMajor(packed_matrix->layout));
[all …]
Dpack_x86.h79 RUY_DCHECK(IsColMajor(src_matrix.layout));
80 RUY_DCHECK(IsColMajor(packed_matrix->layout));
126 RUY_DCHECK(IsColMajor(src_matrix.layout));
127 RUY_DCHECK(IsColMajor(packed_matrix->layout));
165 RUY_DCHECK(IsColMajor(src_matrix.layout));
166 RUY_DCHECK(IsColMajor(packed_matrix->layout));
199 RUY_DCHECK(IsColMajor(src_matrix.layout));
200 RUY_DCHECK(IsColMajor(packed_matrix->layout));
246 RUY_DCHECK(IsColMajor(src_matrix.layout));
247 RUY_DCHECK(IsColMajor(packed_matrix->layout));
[all …]
Dpack_common.h105 RUY_DCHECK(IsColMajor(packed_matrix->layout)); in Run()
Dmat.h326 inline bool IsColMajor(const MatLayout& layout) { in IsColMajor() function
348 inline bool IsColMajor(const PMatLayout& layout) { in IsColMajor() function
Dcreate_trmul_params.h411 RUY_DCHECK(IsColMajor(dst.layout));
471 if (IsColMajor(dst.layout)) {
Dtest.h520 inline bool IsColMajor(const Layout& layout) {
/external/eigen/Eigen/src/Core/
DReverse.h76 IsColMajor = !IsRowMajor,
79 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
82 || ((Direction == Vertical) && IsColMajor)
DCoreEvaluators.h1491 IsColMajor = !IsRowMajor,
1495 || ((Direction == Vertical) && IsColMajor)
1551 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
1575 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector_BLAS.h57 IsColMajor = StorageOrder==ColMajor \
59 if (IsColMajor == ConjugateLhs) {\