Home
last modified time | relevance | path

Searched refs:RowMajor (Results 1 – 25 of 158) sorted by relevance

1234567

/external/eigen/Eigen/src/SparseCore/
DConservativeSparseSparseProduct.h124 int LhsStorageOrder = (traits<Lhs>::Flags&RowMajorBit) ? RowMajor : ColMajor,
125 int RhsStorageOrder = (traits<Rhs>::Flags&RowMajorBit) ? RowMajor : ColMajor,
126 int ResStorageOrder = (traits<ResultType>::Flags&RowMajorBit) ? RowMajor : ColMajor>
137 …typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatr…
148 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,RowMajor,ColMajor,ColMajor>
152 …typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatr…
161 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,RowMajor,ColMajor>
165 …typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatr…
174 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,RowMajor,RowMajor,ColMajor>
178 …typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::Index> RowMajorMatr…
[all …]
DSparsePermutation.h26 SrcStorageOrder = MatrixTypeNestedCleaned::Flags&RowMajorBit ? RowMajor : ColMajor,
27 MoveOuter = SrcStorageOrder==RowMajor ? Side==OnTheLeft : Side==OnTheRight
32 … SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,Index> >::type ReturnType;
44 SrcStorageOrder = MatrixTypeNestedCleaned::Flags&RowMajorBit ? RowMajor : ColMajor,
45 MoveOuter = SrcStorageOrder==RowMajor ? Side==OnTheLeft : Side==OnTheRight
79 …SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,Index> tmp(m_matrix.rows(), m…
DSparseSparseProductWithPruning.h97 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,RowMajor>
111 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,RowMajor,RowMajor,RowMajor>
124 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,RowMajor,RowMajor,ColMajor>
/external/eigen/test/
Dproduct_trmm.cpp19 typedef Matrix<Scalar,OtherCols,Dynamic,OtherCols==1?RowMajor:OtherOrder> OnTheLeft; in trmm()
22 typedef Matrix<Scalar,OtherCols,Dynamic,OtherCols==1?RowMajor:ResOrder> ResSX; in trmm()
77 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, ColMajor,ColMajor,RowMajor>())); \
78 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, ColMajor,RowMajor,ColMajor>())); \
79 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, ColMajor,RowMajor,RowMajor>())); \
80 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, RowMajor,ColMajor,ColMajor>())); \
81 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, RowMajor,ColMajor,RowMajor>())); \
82 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, RowMajor,RowMajor,ColMajor>())); \
83 EIGEN_CAT(CALL_SUBTEST_,NB)((trmm<SCALAR, MODE, RowMajor,RowMajor,RowMajor>())); \
86 EIGEN_CAT(CALL_SUBTEST_1,NB)((trmv<SCALAR, MODE, RowMajor>()));
Dpardiso_support.cpp10 PardisoLLT < SparseMatrix<T, RowMajor>, Lower> pardiso_llt_lower; in test_pardiso_T()
11 PardisoLLT < SparseMatrix<T, RowMajor>, Upper> pardiso_llt_upper; in test_pardiso_T()
12 PardisoLDLT < SparseMatrix<T, RowMajor>, Lower> pardiso_ldlt_lower; in test_pardiso_T()
13 PardisoLDLT < SparseMatrix<T, RowMajor>, Upper> pardiso_ldlt_upper; in test_pardiso_T()
14 PardisoLU < SparseMatrix<T, RowMajor> > pardiso_lu; in test_pardiso_T()
Dconservative_resize.cpp117 CALL_SUBTEST_1((run_matrix_tests<int, Eigen::RowMajor>())); in test_conservative_resize()
119 CALL_SUBTEST_2((run_matrix_tests<float, Eigen::RowMajor>())); in test_conservative_resize()
121 CALL_SUBTEST_3((run_matrix_tests<double, Eigen::RowMajor>())); in test_conservative_resize()
123 CALL_SUBTEST_4((run_matrix_tests<std::complex<float>, Eigen::RowMajor>())); in test_conservative_resize()
125 CALL_SUBTEST_5((run_matrix_tests<std::complex<double>, Eigen::RowMajor>())); in test_conservative_resize()
/external/eigen/blas/
Dlevel2_impl.h24 …func[TR ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,false,Scalar,false>::run… in EIGEN_BLAS_FUNC()
25 …func[ADJ ] = (internal::general_matrix_vector_product<int,Scalar,RowMajor,Conj, Scalar,false>::run… in EIGEN_BLAS_FUNC()
88 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, false,RowMajor>::run); in EIGEN_BLAS_FUNC()
89 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, Conj, RowMajor>::run); in EIGEN_BLAS_FUNC()
92 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, false,RowMajor>::run); in EIGEN_BLAS_FUNC()
93 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|0, Conj, RowMajor>::run); in EIGEN_BLAS_FUNC()
96 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|UnitDiag,false,RowMajor>::run); in EIGEN_BLAS_FUNC()
97 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|UnitDiag,Conj, RowMajor>::run); in EIGEN_BLAS_FUNC()
100 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|UnitDiag,false,RowMajor>::run); in EIGEN_BLAS_FUNC()
101 …nternal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Upper|UnitDiag,Conj, RowMajor>::run); in EIGEN_BLAS_FUNC()
[all …]
Dlevel3_impl.h24 …func[TR | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,fa… in EIGEN_BLAS_FUNC()
25 …func[ADJ | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Co… in EIGEN_BLAS_FUNC()
26 …::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,false,Scalar,RowMajor,false,ColMajor>::… in EIGEN_BLAS_FUNC()
27 …= (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,false,Scalar,RowMajor,false,… in EIGEN_BLAS_FUNC()
28 …= (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Conj, Scalar,RowMajor,false,… in EIGEN_BLAS_FUNC()
29 …::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,false,Scalar,RowMajor,Conj, ColMajor>::… in EIGEN_BLAS_FUNC()
30 …= (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,false,Scalar,RowMajor,Conj, … in EIGEN_BLAS_FUNC()
31 …= (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Conj, Scalar,RowMajor,Conj, … in EIGEN_BLAS_FUNC()
79 …angular_solve_matrix<Scalar,DenseIndex,OnTheLeft, Lower|0, false,RowMajor,ColMajor>::run); in EIGEN_BLAS_FUNC()
80 …angular_solve_matrix<Scalar,DenseIndex,OnTheLeft, Lower|0, Conj, RowMajor,ColMajor>::run); in EIGEN_BLAS_FUNC()
[all …]
/external/eigen/Eigen/src/Core/util/
DXprHelper.h109 ( (_Rows==1 && _Cols!=1) ? RowMajor
119 Options = IsColVector ? (_Options | ColMajor) & ~RowMajor
120 : IsRowVector ? (_Options | RowMajor) & ~ColMajor
131 row_major_bit = Options&RowMajor ? RowMajorBit : 0,
182 AutoAlign | (traits<T>::Flags&RowMajorBit ? RowMajor : ColMajor),
193 AutoAlign | (traits<T>::Flags&RowMajorBit ? RowMajor : ColMajor),
245 (MaxRows==1&&MaxCols!=1) ? RowMajor : ColMajor,
263 (MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
416 …ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRo…
418 …ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRow…
[all …]
/external/ceres-solver/include/ceres/internal/
Deigen.h42 Eigen::RowMajor> Matrix;
67 typedef Eigen::Matrix <double, num_rows, num_cols, Eigen::RowMajor>
71 Eigen::Matrix<double, num_rows, num_cols, Eigen::RowMajor> >
83 const Eigen::Matrix<double, num_rows, num_cols, Eigen::RowMajor> >
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrix.h24 …oduct<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,RowMajor>
38 RhsScalar, RhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateRhs,
39 LhsScalar, LhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateLhs,
272 typename conditional<StorageOrder==RowMajor,_RhsScalar,_LhsScalar>::type,
273 typename conditional<StorageOrder==RowMajor,_LhsScalar,_RhsScalar>::type>
276 Transpose = StorageOrder==RowMajor,
314 typename conditional<StorageOrder==RowMajor,_RhsScalar,_LhsScalar>::type,
315 typename conditional<StorageOrder==RowMajor,_LhsScalar,_RhsScalar>::type>
318 Transpose = StorageOrder==RowMajor
407 …typedef internal::gemm_blocking_space<(Dest::Flags&RowMajorBit) ? RowMajor : ColMajor,LhsScalar,Rh…
[all …]
DSelfadjointMatrixMatrix_MKL.h79 if (LhsStorageOrder==RowMajor) uplo='U'; \
82 if (RhsStorageOrder==RowMajor) { \
131 …if (((LhsStorageOrder==ColMajor) && ConjugateLhs) || ((LhsStorageOrder==RowMajor) && (!ConjugateLh…
137 if (LhsStorageOrder==RowMajor) uplo='U'; \
205 if (RhsStorageOrder==RowMajor) uplo='U'; \
208 if (LhsStorageOrder==RowMajor) { \
256 …if (((RhsStorageOrder==ColMajor) && ConjugateRhs) || ((RhsStorageOrder==RowMajor) && (!ConjugateRh…
262 if (RhsStorageOrder==RowMajor) uplo='U'; \
DTriangularSolverVector.h24 Conjugate,StorageOrder==RowMajor?ColMajor:RowMajor
31 struct triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheLeft, Mode, Conjugate, RowMajor>
38 typedef Map<const Matrix<LhsScalar,Dynamic,Dynamic,RowMajor>, 0, OuterStride<> > LhsMap;
61 general_matrix_vector_product<Index,LhsScalar,RowMajor,Conjugate,RhsScalar,false>::run(
DGeneralMatrixMatrixTriangular.h41 …hsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,RowMajor,UpLo,Version>
48 RhsScalar, RhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateRhs,
49 LhsScalar, LhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateLhs,
213 StorageOrder = (internal::traits<MatrixType>::Flags&RowMajorBit) ? RowMajor : ColMajor,
258 …typename Lhs::Scalar, _ActualLhs::Flags&RowMajorBit ? RowMajor : ColMajor, LhsBlasTraits::NeedToCo…
259 …typename Rhs::Scalar, _ActualRhs::Flags&RowMajorBit ? RowMajor : ColMajor, RhsBlasTraits::NeedToCo…
260 MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor, UpLo>
DSelfadjointProduct.h39 struct selfadjoint_rank1_update<Scalar,Index,RowMajor,UpLo,ConjLhs,ConjRhs>
65 StorageOrder = (internal::traits<MatrixType>::Flags&RowMajorBit) ? RowMajor : ColMajor,
100 …Scalar, _ActualOtherType::Flags&RowMajorBit ? RowMajor : ColMajor, OtherBlasTraits::NeedToConjug…
101 …Scalar, _ActualOtherType::Flags&RowMajorBit ? ColMajor : RowMajor, (!OtherBlasTraits::NeedToConjug…
102 MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor, UpLo>
DTriangularSolverMatrix_MKL.h66 transa = (TriStorageOrder==RowMajor) ? ((Conjugate) ? 'C' : 'T') : 'N'; \
69 if (TriStorageOrder==RowMajor) uplo = (uplo == 'L') ? 'U' : 'L'; \
121 transa = (TriStorageOrder==RowMajor) ? ((Conjugate) ? 'C' : 'T') : 'N'; \
124 if (TriStorageOrder==RowMajor) uplo = (uplo == 'L') ? 'U' : 'L'; \
DSelfadjointMatrixMatrix.h206 …,LhsStorageOrder,LhsSelfAdjoint,ConjugateLhs, RhsStorageOrder,RhsSelfAdjoint,ConjugateRhs,RowMajor>
217 EIGEN_LOGICAL_XOR(RhsSelfAdjoint,RhsStorageOrder==RowMajor) ? ColMajor : RowMajor,
219 EIGEN_LOGICAL_XOR(LhsSelfAdjoint,LhsStorageOrder==RowMajor) ? ColMajor : RowMajor,
273 …alar, Index, Traits::mr, Traits::LhsProgress, LhsStorageOrder==RowMajor?ColMajor:RowMajor, true> p…
418 … internal::traits<Lhs>::Flags &RowMajorBit) ? RowMajor : ColMajor, LhsIsSelfAdjoint,
421 … internal::traits<Rhs>::Flags &RowMajorBit) ? RowMajor : ColMajor, RhsIsSelfAdjoint,
423 internal::traits<Dest>::Flags&RowMajorBit ? RowMajor : ColMajor>
DTriangularMatrixVector.h89 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Ver…
102 …d triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Version>
111 typedef Map<const Matrix<LhsScalar,Dynamic,Dynamic,RowMajor>, 0, OuterStride<> > LhsMap;
139 … general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjLhs,RhsScalar,ConjRhs,BuiltIn>::run(
148 general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjLhs,RhsScalar,ConjRhs>::run(
188 …internal::trmv_selector<(int(internal::traits<Lhs>::Flags)&RowMajorBit) ? RowMajor : ColMajor>::ru…
206 …internal::trmv_selector<(int(internal::traits<Rhs>::Flags)&RowMajorBit) ? ColMajor : RowMajor>::ru…
291 template<> struct trmv_selector<RowMajor>
335 RowMajor>
/external/eigen/Eigen/src/Core/
DDiagonalProduct.h28 _StorageOrder = MatrixType::Flags & RowMajorBit ? RowMajor : ColMajor,
30 ||(int(_StorageOrder) == RowMajor && int(ProductOrder) == OnTheRight)),
69 StorageOrder = int(MatrixType::Flags) & RowMajorBit ? RowMajor : ColMajor
78 StorageOrder = Flags & RowMajorBit ? RowMajor : ColMajor
82 ((int(StorageOrder) == RowMajor && int(ProductOrder) == OnTheLeft)
90 StorageOrder = int(MatrixType::Flags) & RowMajorBit ? RowMajor : ColMajor
/external/eigen/Eigen/src/Eigenvalues/
DSelfAdjointEigenSolver_MKL.h85 EIGEN_MKL_EIG_SELFADJ(double, double, double, dsyev, RowMajor, LAPACK_ROW_MAJOR)
86 EIGEN_MKL_EIG_SELFADJ(float, float, float, ssyev, RowMajor, LAPACK_ROW_MAJOR)
87 EIGEN_MKL_EIG_SELFADJ(dcomplex, MKL_Complex16, double, zheev, RowMajor, LAPACK_ROW_MAJOR)
88 EIGEN_MKL_EIG_SELFADJ(scomplex, MKL_Complex8, float, cheev, RowMajor, LAPACK_ROW_MAJOR)
/external/eigen/Eigen/src/QR/
DColPivHouseholderQR_MKL.h92 EIGEN_MKL_QR_COLPIV(double, double, d, RowMajor, LAPACK_ROW_MAJOR)
93 EIGEN_MKL_QR_COLPIV(float, float, s, RowMajor, LAPACK_ROW_MAJOR)
94 EIGEN_MKL_QR_COLPIV(dcomplex, MKL_Complex16, z, RowMajor, LAPACK_ROW_MAJOR)
95 EIGEN_MKL_QR_COLPIV(scomplex, MKL_Complex8, c, RowMajor, LAPACK_ROW_MAJOR)
/external/eigen/Eigen/src/SVD/
DJacobiSVD_MKL.h85 EIGEN_MKL_SVD(double, double, double, d, RowMajor, LAPACK_ROW_MAJOR)
86 EIGEN_MKL_SVD(float, float, float , s, RowMajor, LAPACK_ROW_MAJOR)
87 EIGEN_MKL_SVD(dcomplex, MKL_Complex16, double, z, RowMajor, LAPACK_ROW_MAJOR)
88 EIGEN_MKL_SVD(scomplex, MKL_Complex8, float , c, RowMajor, LAPACK_ROW_MAJOR)
/external/gemmlowp/test/
Dtest.cc216 const bool transpose_c = ResultOrder == MapOrder::RowMajor; in Gemm()
217 const bool transpose_a = LhsOrder == MapOrder::RowMajor; in Gemm()
218 const bool transpose_b = RhsOrder == MapOrder::RowMajor; in Gemm()
385 const bool transpose_c = kResultOrder == MapOrder::RowMajor; in test_gemm_impl()
386 const bool transpose_a = kLhsOrder == MapOrder::RowMajor; in test_gemm_impl()
387 const bool transpose_b = kRhsOrder == MapOrder::RowMajor; in test_gemm_impl()
526 GEMMLOWP_ONE_TEST(RowMajor, ColMajor, ColMajor); in test_gemm()
527 GEMMLOWP_ONE_TEST(ColMajor, RowMajor, ColMajor); in test_gemm()
528 GEMMLOWP_ONE_TEST(RowMajor, RowMajor, ColMajor); in test_gemm()
530 GEMMLOWP_ONE_TEST(ColMajor, ColMajor, RowMajor); in test_gemm()
[all …]
/external/mesa3d/src/glsl/
Dlower_ubo_reference.cpp90 bool row_major = ubo_var->RowMajor; in handle_rvalue()
221 field->type->std140_base_alignment(ubo_var->RowMajor)); in emit_ubo_loads()
225 field_offset += field->type->std140_size(ubo_var->RowMajor); in emit_ubo_loads()
232 align(deref->type->fields.array->std140_size(ubo_var->RowMajor), 16); in emit_ubo_loads()
263 if (!ubo_var->RowMajor) { in emit_ubo_loads()
Dlink_uniforms.cpp336 unsigned alignment = type->std140_base_alignment(ubo_var->RowMajor); in visit_field()
339 this->ubo_byte_offset += type->std140_size(ubo_var->RowMajor); in visit_field()
343 align(type->fields.array->std140_size(ubo_var->RowMajor), 16); in visit_field()
351 this->uniforms[id].row_major = ubo_var->RowMajor; in visit_field()
416 if (old_block->Uniforms[j].RowMajor != in link_cross_validate_uniform_block()
417 new_block->Uniforms[j].RowMajor) in link_cross_validate_uniform_block()
496 unsigned alignment = type->std140_base_alignment(ubo_var->RowMajor); in link_assign_uniform_block_offsets()
497 unsigned size = type->std140_size(ubo_var->RowMajor); in link_assign_uniform_block_offsets()

1234567