HomeSort by relevance Sort by last modified time
    Searched refs:NeedToTranspose (Results 1 - 3 of 3) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 203 template<typename LhsT, typename RhsT, bool NeedToTranspose>
207 typedef typename conditional<NeedToTranspose,RhsT,LhsT>::type Lhs1;
208 typedef typename conditional<NeedToTranspose,LhsT,RhsT>::type ActualRhs;
225 Flags = NeedToTranspose ? RowMajorBit : 0,
240 EIGEN_STRONG_INLINE Index row() const { return NeedToTranspose ? m_outer : LhsIterator::index(); }
241 EIGEN_STRONG_INLINE Index col() const { return NeedToTranspose ? LhsIterator::index() : m_outer; }
  /external/eigen/Eigen/src/Core/
Dot.h 21 // the NeedToTranspose condition here is taken straight from Assign.h
22 bool NeedToTranspose = T::IsVectorAtCompileTime
AssignEvaluator.h     [all...]

Completed in 96 milliseconds