HomeSort by relevance Sort by last modified time
    Searched defs:IsRowMajor (Results 1 - 19 of 19) sorted by null

  /external/eigen/test/
sparse.h 64 enum { IsRowMajor = SparseMatrix<Scalar,Opt2,StorageIndex>::IsRowMajor };
67 sparseMat.reserve(VectorXi::Constant(IsRowMajor ? refMat.rows() : refMat.cols(), int((1.5*density)*(IsRowMajor?refMat.cols():refMat.rows()))));
75 if(IsRowMajor)
119 enum { IsRowMajor = DynamicSparseMatrix<Scalar,Opt2,Index>::IsRowMajor };
128 if(IsRowMajor)
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 76 enum { IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0 };
79 if (IsRowMajor)
82 typedef typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ UBlasTraits::NeedToConjugate,_ActualUType>::type>::type UType;
83 typedef typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ VBlasTraits::NeedToConjugate,_ActualVType>::type>::type VType;
85 (IsRowMajor ? int(UpLo==Upper ? Lower : Upper) : UpLo)>
SelfadjointProduct.h 96 IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0,
103 typedef internal::gemm_blocking_space<IsRowMajor ? RowMajor : ColMajor,Scalar,Scalar,
112 IsRowMajor ? RowMajor : ColMajor, UpLo>
GeneralMatrixMatrixTriangular.h 270 IsRowMajor = (internal::traits<MatrixType>::Flags&RowMajorBit) ? 1 : 0,
281 typedef internal::gemm_blocking_space<IsRowMajor ? RowMajor : ColMajor,typename Lhs::Scalar,typename Rhs::Scalar,
289 IsRowMajor ? RowMajor : ColMajor, UpLo&(Lower|Upper)>
293 mat.data() + (SkipDiag ? (bool(IsRowMajor) != ((UpLo&Lower)==Lower) ? 1 : mat.outerStride() ) : 0), mat.outerStride(), actualAlpha, blocking);
SelfadjointMatrixVector.h 51 IsRowMajor = StorageOrder==RowMajor ? 1 : 0,
53 FirstTriangular = IsRowMajor == IsLower
56 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> cj0;
57 conj_helper<Scalar,Scalar,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> cj1;
60 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;
61 conj_helper<Packet,Packet,NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;
  /external/eigen/Eigen/src/Core/
CoreIterators.h 79 enum { IsRowMajor = (XprType::Flags&RowMajorBit)==RowMajorBit };
88 return (IsRowMajor) ? m_eval.coeff(m_outer, m_inner)
95 inline Index row() const { return IsRowMajor ? m_outer : index(); }
96 inline Index col() const { return IsRowMajor ? index() : m_outer; }
Replicate.h 35 IsRowMajor = MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1 ? 1
40 Flags = IsRowMajor ? RowMajorBit : 0
Block.h 38 IsRowMajor = (MaxRowsAtCompileTime==1&&MaxColsAtCompileTime!=1) ? 1
41 HasSameStorageOrderAsXprType = (IsRowMajor == XprTypeIsRowMajor),
42 InnerSize = IsRowMajor ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
52 FlagsRowMajorBit = IsRowMajor ? RowMajorBit : 0,
DenseBase.h 165 IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression has row-major storage order. */
168 : int(IsRowMajor) ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
221 : int(IsRowMajor) ? this->rows() : this->cols();
233 : int(IsRowMajor) ? this->cols() : this->rows();
597 EIGEN_STATIC_ASSERT((EIGEN_IMPLIES(MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1, int(IsRowMajor))
598 && EIGEN_IMPLIES(MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1, int(!IsRowMajor))),
Redux.h 33 InnerMaxSize = int(Derived::IsRowMajor)
350 IsRowMajor = XprType::IsRowMajor,
381 { return m_evaluator.coeff(IsRowMajor ? outer : inner, IsRowMajor ? inner : outer); }
385 { return m_evaluator.template packet<LoadMode,PacketType>(IsRowMajor ? outer : inner, IsRowMajor ? inner : outer); }
CoreEvaluators.h 135 IsRowMajor = PlainObjectType::IsRowMajor,
148 : int(IsRowMajor) ? ColsAtCompileTime
163 if (IsRowMajor)
178 if (IsRowMajor)
194 if (IsRowMajor)
211 if (IsRowMajor)
231 : int(IsRowMajor) ? ColsAtCompileTime
816 IsRowMajor = XprType::RowsAtCompileTime,
886 inline Index rowStride() const { return XprType::IsRowMajor ? m_outerStride.value() : m_innerStride.value();
    [all...]
  /external/eigen/doc/examples/
matrixfree_cg.cpp 30 IsRowMajor = false
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseBinaryOp.h 114 EIGEN_STRONG_INLINE Index row() const { return Lhs::IsRowMajor ? m_lhsIter.row() : index(); }
115 EIGEN_STRONG_INLINE Index col() const { return Lhs::IsRowMajor ? index() : m_lhsIter.col(); }
166 enum { IsRowMajor = (int(Rhs::Flags)&RowMajorBit)==RowMajorBit };
180 Scalar lhsVal = m_lhsEval.coeff(IsRowMajor?m_rhsIter.outer():m_id,
181 IsRowMajor?m_id:m_rhsIter.outer());
198 EIGEN_STRONG_INLINE Index row() const { return IsRowMajor ? m_rhsIter.outer() : m_id; }
199 EIGEN_STRONG_INLINE Index col() const { return IsRowMajor ? m_id : m_rhsIter.outer(); }
254 enum { IsRowMajor = (int(Lhs::Flags)&RowMajorBit)==RowMajorBit };
268 Scalar rhsVal = m_rhsEval.coeff(IsRowMajor?m_lhsIter.outer():m_id,
269 IsRowMajor?m_id:m_lhsIter.outer())
    [all...]
SparseMap.h 57 enum { IsRowMajor = Base::IsRowMajor };
79 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
81 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
107 const Index outer = IsRowMajor ? row : col;
108 const Index inner = IsRowMajor ? col : row;
126 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_zero_nnz(0,internal::convert_index<StorageIndex>(nnz)), m_outerIndex(outerIndexPtr),
157 enum { IsRowMajor = Base::IsRowMajor };
    [all...]
SparseView.h 143 enum { IsRowMajor = (XprType::Flags&RowMajorBit)==RowMajorBit };
167 return (IsRowMajor) ? m_sve.m_argImpl.coeff(m_outer, m_inner)
172 inline Index row() const { return IsRowMajor ? m_outer : index(); }
173 inline Index col() const { return IsRowMajor ? index() : m_outer; }
SparseBlock.h 23 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor };
25 enum { OuterSize = IsRowMajor ? BlockRows : BlockCols };
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
39 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
40 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
56 return m_matrix.coeff(row + (IsRowMajor ? m_outerStart : 0), col + (IsRowMajor ? 0 : m_outerStart));
61 return m_matrix.coeff(IsRowMajor ? m_outerStart : index, IsRowMajor ? index : m_outerStart)
    [all...]
SparseMatrixBase.h 95 IsRowMajor = Flags&RowMajorBit ? 1 : 0,
98 : int(IsRowMajor) ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
354 typedef Block<Derived,IsRowMajor?1:Dynamic,IsRowMajor?Dynamic:1,true> InnerVectorReturnType;
355 typedef Block<const Derived,IsRowMajor?1:Dynamic,IsRowMajor?Dynamic:1,true> ConstInnerVectorReturnType;
SparseMatrix.h 116 using Base::IsRowMajor;
125 typedef SparseMatrix<Scalar,(Flags&~RowMajorBit)|(IsRowMajor?RowMajorBit:0)> TransposedSparseMatrix;
136 inline Index rows() const { return IsRowMajor ? m_outerSize : m_innerSize; }
138 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; }
192 const Index outer = IsRowMajor ? row : col;
193 const Index inner = IsRowMajor ? col : row;
210 const Index outer = IsRowMajor ? row : col;
211 const Index inner = IsRowMajor ? col : row;
385 return insertBackByOuterInner(IsRowMajor?row:col, IsRowMajor?col:row)
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 75 IsRowMajor = Flags & RowMajorBit ? 1 : 0

Completed in 612 milliseconds