HomeSort by relevance Sort by last modified time
    Searched refs:RowMajor (Results 76 - 100 of 144) sorted by null

1 2 34 5 6

  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 161 int LhsStorageOrder = ((SparseLhsType::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor,
166 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType, RowMajor, true>
212 struct sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType, RowMajor, false>
TriangularSolver.h 28 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Lower,RowMajor>
62 struct sparse_solve_triangular_selector<Lhs,Rhs,Mode,Upper,RowMajor>
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 19 struct triangular_solve_matrix<Scalar,Index,Side,Mode,Conjugate,TriStorageOrder,RowMajor>
31 TriStorageOrder==RowMajor ? ColMajor : RowMajor, ColMajor>
124 if (TriStorageOrder==RowMajor)
SelfadjointMatrixVector.h 50 IsRowMajor = StorageOrder==RowMajor ? 1 : 0,
237 internal::selfadjoint_matrix_vector_product<Scalar, Index, (internal::traits<_ActualLhsType>::Flags&RowMajorBit) ? RowMajor : ColMajor, int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 45 AutoAlign | (traits<MatrixType>::Flags & RowMajorBit ? RowMajor : ColMajor),
  /external/eigen/blas/
PackedTriangularMatrixVector.h 48 struct packed_triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor>
  /external/eigen/test/
array_reverse.cpp 120 CALL_SUBTEST_9( reverse(Matrix<float,Dynamic,Dynamic,RowMajor>(6,3)) );
schur_complex.cpp 87 CALL_SUBTEST_4(( schur<Matrix<float, 3, 3, Eigen::RowMajor> >() ));
schur_real.cpp 108 CALL_SUBTEST_4(( schur<Matrix<double, 3, 3, Eigen::RowMajor> >() ));
product_syrk.cpp 16 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime, RowMajor> RMatrixType;
19 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, Dynamic,RowMajor> Rhs3;
vectorization_logic.cpp 94 typedef Matrix<Scalar,4*PacketSize,16,RowMajor> Matrix44r;
104 DontAlign|((Matrix1::Flags&RowMajorBit)?RowMajor:ColMajor)> Matrix1u;
nomalloc.cpp 183 enum { Flag = MatrixType::IsRowMajor ? Eigen::RowMajor : Eigen::ColMajor};
184 enum { TransposeFlag = !MatrixType::IsRowMajor ? Eigen::RowMajor : Eigen::ColMajor};
triangular.cpp 222 CALL_SUBTEST_6( triangular_square(Matrix<float,Dynamic,Dynamic,RowMajor>(r, r)) );
228 CALL_SUBTEST_6( triangular_rect(Matrix<float,Dynamic,Dynamic,RowMajor>(r, c)) );
  /external/eigen/test/eigen2/
eigen2_visitor.cpp 107 CALL_SUBTEST_5( matrixVisitor(Matrix<double,Dynamic,Dynamic,RowMajor>(20, 20)) );
  /external/eigen/unsupported/test/
sparse_extra.cpp 146 CALL_SUBTEST_3( (sparse_product<DynamicSparseMatrix<float, RowMajor> >()) );
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 80 typedef Matrix<Scalar, SizeMinusOne, 1, Options & ~RowMajor, MaxSizeMinusOne, 1> CoeffVectorType;
82 typedef Matrix<RealScalar, SizeMinusOne, 1, Options & ~RowMajor, MaxSizeMinusOne, 1> SubDiagonalType;
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 309 * 2 - the matrix is row-major, BLAS compatible and N is large => call fast BLAS-like rowmajor routine
348 internal::gemv_selector<Side,(int(MatrixType::Flags)&RowMajorBit) ? RowMajor : ColMajor,
363 enum { OtherStorageOrder = StorageOrder == RowMajor ? ColMajor : RowMajor };
479 template<> struct gemv_selector<OnTheRight,RowMajor,true>
521 <Index,LhsScalar,RowMajor,LhsBlasTraits::NeedToConjugate,RhsScalar,RhsBlasTraits::NeedToConjugate>::run(
543 template<> struct gemv_selector<OnTheRight,RowMajor,false>
ArrayBase.h 96 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
Matrix.h 33 * \tparam _Options \anchor matrix_tparam_options A combination of either \b #RowMajor or \b #ColMajor, and of either
121 OuterStrideAtCompileTime = (Options&RowMajor) ? ColsAtCompileTime : RowsAtCompileTime
PlainObjectBase.h 657 EIGEN_STATIC_ASSERT((EIGEN_IMPLIES(MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1, (Options&RowMajor)==RowMajor)
658 && EIGEN_IMPLIES(MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1, (Options&RowMajor)==0)
665 && (Options & (DontAlign|RowMajor)) == Options),
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 211 eigen_assert( ((Options&RowMajor)!=RowMajor) && "row-major dense matrices is not supported by SuperLU");
274 eigen_assert((Flags&RowMajor)==RowMajor && sluMat.Stype == SLU_NR
277 Index outerSize = (Flags&RowMajor)==RowMajor ? sluMat.ncol : sluMat.nrow;
  /external/eigen/Eigen/src/Core/util/
BlasUtil.h 128 { return m_data[StorageOrder==RowMajor ? j + i*m_stride : i + j*m_stride]; }
141 { return m_data[StorageOrder==RowMajor ? j + i*m_stride : i + j*m_stride]; }
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 282 Matrix<Scalar,1,Dest::RowsAtCompileTime,RowMajor,1,Dest::MaxRowsAtCompileTime> workspace(dst.rows());
302 Matrix<Scalar,1,Dest::ColsAtCompileTime,RowMajor,1,Dest::MaxColsAtCompileTime> workspace(dst.cols());
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h 101 typedef SparseMatrix<Scalar,RowMajor> FactorType;
258 SparseMatrix<Scalar,RowMajor, Index> mat;
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 67 EIGEN_SIZE_MIN_PREFER_DYNAMIC(ColsAtCompileTime,RowsAtCompileTime), RowMajor, 1,
544 typedef Matrix<typename MatrixType::Scalar, 1, MatrixType::RowsAtCompileTime, RowMajor, 1,

Completed in 306 milliseconds

1 2 34 5 6