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

  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 17 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate, int StorageOrder>
18 struct triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheRight, Mode, Conjugate, StorageOrder>
20 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs)
22 triangular_solve_vector<LhsScalar,RhsScalar,Index,OnTheLeft,
30 template<typename LhsScalar, typename RhsScalar, typename Index, int Mode, bool Conjugate>
31 struct triangular_solve_vector<LhsScalar, RhsScalar, Index, OnTheLeft, Mode, Conjugate, RowMajor>
36 static void run(Index size, const LhsScalar* _lhs, Index lhsStride, RhsScalar* rhs)
61 general_matrix_vector_product<Index,LhsScalar,RowMajor,Conjugate,RhsScalar,false>::run(
66 RhsScalar(-1));
74 rhs[i] -= (cjLhs.row(i).segment(s,k).transpose().cwiseProduct(Map<const Matrix<RhsScalar,Dynamic,1> >(rhs+s,k))).sum()
    [all...]
GeneralMatrixMatrix.h 23 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs>
24 struct general_matrix_matrix_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,RowMajor>
26 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
30 const RhsScalar* rhs, Index rhsStride,
33 level3_blocking<RhsScalar,LhsScalar>& blocking,
38 RhsScalar, RhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateRhs,
50 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs>
51 struct general_matrix_matrix_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,ColMajor>
53 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
56 const RhsScalar* _rhs, Index rhsStride
    [all...]
GeneralMatrixMatrixTriangular.h 25 template<typename LhsScalar, typename RhsScalar, typename Index, int mr, int nr, bool ConjLhs, bool ConjRhs, int UpLo>
31 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs,
37 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs, int UpLo, int Version>
38 struct general_matrix_matrix_triangular_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,RowMajor,UpLo,Version>
40 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
42 const RhsScalar* rhs, Index rhsStride, ResScalar* res, Index resStride, ResScalar alpha)
45 RhsScalar, RhsStorageOrder==RowMajor ? ColMajor : RowMajor, ConjugateRhs,
53 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs, int UpLo, int Version>
54 struct general_matrix_matrix_triangular_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,ColMajor,UpLo,Version>
56 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar
    [all...]
TriangularMatrixVector.h 17 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder, int Version=Specialized>
20 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
23 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
30 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, ResScalar alpha)
41 typedef Map<const Matrix<RhsScalar,Dynamic,1>, 0, InnerStride<> > RhsMap;
65 general_matrix_vector_product<Index,LhsScalar,ColMajor,ConjLhs,RhsScalar,ConjRhs,BuiltIn>::run(
74 general_matrix_vector_product<Index,LhsScalar,ColMajor,ConjLhs,RhsScalar,ConjRhs>::run(
83 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs,int Version>
84 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Version
    [all...]
GeneralMatrixVector.h 30 template<typename Index, typename LhsScalar, bool ConjugateLhs, typename RhsScalar, bool ConjugateRhs, int Version>
31 struct general_matrix_vector_product<Index,LhsScalar,ColMajor,ConjugateLhs,RhsScalar,ConjugateRhs,Version>
33 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
36 Vectorizable = packet_traits<LhsScalar>::Vectorizable && packet_traits<RhsScalar>::Vectorizable
37 && int(packet_traits<LhsScalar>::size)==int(packet_traits<RhsScalar>::size),
39 RhsPacketSize = Vectorizable ? packet_traits<RhsScalar>::size : 1,
44 typedef typename packet_traits<RhsScalar>::type _RhsPacket;
48 typedef typename conditional<Vectorizable,_RhsPacket,RhsScalar>::type RhsPacket;
54 const RhsScalar* rhs, Index rhsIncr,
59 , RhsScalar alpha
    [all...]
GeneralBlockPanelKernel.h 63 * Given a m x k times k x n matrix product of scalar types \c LhsScalar and \c RhsScalar,
72 template<typename LhsScalar, typename RhsScalar, int KcFactor>
85 typedef gebp_traits<LhsScalar,RhsScalar> Traits;
88 * Traits::RhsProgress * sizeof(RhsScalar),
89 mr = gebp_traits<LhsScalar,RhsScalar>::mr,
99 template<typename LhsScalar, typename RhsScalar>
102 computeProductBlockingSizes<LhsScalar,RhsScalar,1>(k, m, n);
150 typedef _RhsScalar RhsScalar;
151 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
156 Vectorizable = packet_traits<LhsScalar>::Vectorizable && packet_traits<RhsScalar>::Vectorizable
    [all...]
GeneralMatrixVector_MKL.h 49 template<typename Index, typename LhsScalar, int LhsStorageOrder, bool ConjugateLhs, typename RhsScalar, bool ConjugateRhs>
51 general_matrix_vector_product<Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,ConjugateRhs,BuiltIn> {};
SelfadjointMatrixVector.h 186 typedef typename Base::RhsScalar RhsScalar;
203 internal::gemv_static_vector_if<RhsScalar,_ActualRhsType::SizeAtCompileTime,_ActualRhsType::MaxSizeAtCompileTime,!UseRhs> static_rhs;
208 ei_declare_aligned_stack_constructed_variable(RhsScalar,actualRhsPtr,rhs.size(),
209 UseRhs ? const_cast<RhsScalar*>(rhs.data()) : static_rhs.data());
TriangularMatrixVector_MKL.h 46 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder>
48 triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,StorageOrder,BuiltIn> {};
  /external/eigen/blas/
BandTriangularSolver.h 18 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, int StorageOrder>
22 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
23 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,RowMajor>
26 typedef Map<Matrix<RhsScalar,Dynamic,1> > RhsMap;
28 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other)
58 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
59 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ColMajor>
62 typedef Map<Matrix<RhsScalar,Dynamic,1> > RhsMap;
64 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other)
  /external/eigen/Eigen/src/Core/
Functors.h 47 template<typename LhsScalar,typename RhsScalar> struct scalar_product_op {
50 Vectorizable = is_same<LhsScalar,RhsScalar>::value && packet_traits<LhsScalar>::HasMul && packet_traits<RhsScalar>::HasMul
52 typedef typename scalar_product_traits<LhsScalar,RhsScalar>::ReturnType result_type;
54 EIGEN_STRONG_INLINE const result_type operator() (const LhsScalar& a, const RhsScalar& b) const { return a * b; }
62 template<typename LhsScalar,typename RhsScalar>
63 struct functor_traits<scalar_product_op<LhsScalar,RhsScalar> > {
65 Cost = (NumTraits<LhsScalar>::MulCost + NumTraits<RhsScalar>::MulCost)/2, // rough estimate!
66 PacketAccess = scalar_product_op<LhsScalar,RhsScalar>::Vectorizable
75 template<typename LhsScalar,typename RhsScalar> struct scalar_conj_product_op
    [all...]
SolveTriangular.h 19 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder>
53 typedef typename Rhs::Scalar RhsScalar;
56 typedef Map<Matrix<RhsScalar,Dynamic,1>, Aligned> MappedRhs;
65 ei_declare_aligned_stack_constructed_variable(RhsScalar,actualRhs,rhs.size(),
71 triangular_solve_vector<LhsScalar, RhsScalar, typename Lhs::Index, Side, Mode, LhsProductTraits::NeedToConjugate,
GeneralProduct.h 312 typedef typename Rhs::Scalar RhsScalar;
391 typedef typename ProductType::RhsScalar RhsScalar;
410 ComplexByReal = (NumTraits<LhsScalar>::IsComplex) && (!NumTraits<RhsScalar>::IsComplex),
419 RhsScalar compatibleAlpha = get_factor<ResScalar,RhsScalar>::run(actualAlpha);
433 compatibleAlpha = RhsScalar(1);
440 <Index,LhsScalar,ColMajor,LhsBlasTraits::NeedToConjugate,RhsScalar,RhsBlasTraits::NeedToConjugate>::run(
463 typedef typename ProductType::RhsScalar RhsScalar;
    [all...]
ProductBase.h 81 typedef typename internal::traits<Rhs>::Scalar RhsScalar;
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 152 template<typename LhsScalar, typename RhsScalar, bool ConjLhs=false, bool ConjRhs=false> struct conj_helper;
156 template<typename LhsScalar,typename RhsScalar> struct scalar_conj_product_op;
186 template<typename LhsScalar,typename RhsScalar=LhsScalar> struct scalar_product_op;
187 template<typename LhsScalar,typename RhsScalar> struct scalar_multiple2_op;
BlasUtil.h 21 template<typename LhsScalar, typename RhsScalar, typename Index, int mr, int nr, bool ConjugateLhs=false, bool ConjugateRhs=false>
33 typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs,
37 template<typename Index, typename LhsScalar, int LhsStorageOrder, bool ConjugateLhs, typename RhsScalar, bool ConjugateRhs, int Version=Specialized>
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 304 template<typename RhsScalar, int RhsOptions, typename RhsIndex, typename DestScalar, int DestOptions, typename DestIndex>
305 void _solve(const SparseMatrix<RhsScalar,RhsOptions,RhsIndex> &b, SparseMatrix<DestScalar,DestOptions,DestIndex> &dest) const

Completed in 373 milliseconds