Searched refs:IsColMajor (Results 1 – 10 of 10) sorted by relevance
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockSparseMatrix.h | 86 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/ruy/ruy/ |
D | pack_arm.h | 154 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 …]
|
D | pack_x86.h | 79 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 …]
|
D | pack_common.h | 105 RUY_DCHECK(IsColMajor(packed_matrix->layout)); in Run()
|
D | mat.h | 326 inline bool IsColMajor(const MatLayout& layout) { in IsColMajor() function 348 inline bool IsColMajor(const PMatLayout& layout) { in IsColMajor() function
|
D | create_trmul_params.h | 411 RUY_DCHECK(IsColMajor(dst.layout)); 471 if (IsColMajor(dst.layout)) {
|
D | test.h | 519 inline bool IsColMajor(const Layout& layout) {
|
/external/eigen/Eigen/src/Core/ |
D | Reverse.h | 76 IsColMajor = !IsRowMajor, 79 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1, 82 || ((Direction == Vertical) && IsColMajor)
|
D | CoreEvaluators.h | 1425 IsColMajor = !IsRowMajor, 1429 || ((Direction == Vertical) && IsColMajor) 1484 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1, 1508 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
|
/external/eigen/Eigen/src/Core/products/ |
D | SelfadjointMatrixVector_BLAS.h | 57 IsColMajor = StorageOrder==ColMajor \ 59 if (IsColMajor == ConjugateLhs) {\
|