10 #ifndef EIGEN_GENERAL_MATRIX_MATRIX_TRIANGULAR_H 
   11 #define EIGEN_GENERAL_MATRIX_MATRIX_TRIANGULAR_H 
   15 template<
typename Scalar, 
typename Index, 
int StorageOrder, 
int UpLo, 
bool ConjLhs, 
bool ConjRhs>
 
   28 template<
typename LhsScalar, 
typename RhsScalar, 
typename Index, 
int mr, 
int nr, 
bool ConjLhs, 
bool ConjRhs, 
int ResInnerStr
ide, 
int UpLo>
 
   32 template <
typename Index,
 
   33           typename LhsScalar, 
int LhsStorageOrder, 
bool ConjugateLhs,
 
   34           typename RhsScalar, 
int RhsStorageOrder, 
bool ConjugateRhs,
 
   35                               int ResStorageOrder, 
int ResInnerStride, 
int  UpLo, 
int Version = 
Specialized>
 
   39 template <
typename Index, 
typename LhsScalar, 
int LhsStorageOrder, 
bool ConjugateLhs,
 
   40                           typename RhsScalar, 
int RhsStorageOrder, 
bool ConjugateRhs,
 
   41                           int ResInnerStride, 
int  UpLo, 
int Version>
 
   42 struct general_matrix_matrix_triangular_product<
Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,
RowMajor,ResInnerStride,UpLo,Version>
 
   53       ::run(
size,
depth,rhs,rhsStride,lhs,lhsStride,
res,resIncr,resStride,
alpha,blocking);
 
   57 template <
typename Index, 
typename LhsScalar, 
int LhsStorageOrder, 
bool ConjugateLhs,
 
   58                           typename RhsScalar, 
int RhsStorageOrder, 
bool ConjugateRhs,
 
   59                           int ResInnerStride, 
int  UpLo, 
int Version>
 
   60 struct general_matrix_matrix_triangular_product<
Index,LhsScalar,LhsStorageOrder,ConjugateLhs,RhsScalar,RhsStorageOrder,ConjugateRhs,
ColMajor,ResInnerStride,UpLo,Version>
 
   64                                       const RhsScalar* _rhs, 
Index rhsStride,
 
   73     LhsMapper lhs(_lhs,lhsStride);
 
   74     RhsMapper rhs(_rhs,rhsStride);
 
   75     ResMapper 
res(_res, resStride, resIncr);
 
   82       mc = (mc/Traits::nr)*Traits::nr;
 
  100       pack_rhs(blockB, rhs.getSubMapper(k2,0), actual_kc, 
size);
 
  106         pack_lhs(blockA, lhs.getSubMapper(i2, k2), actual_kc, actual_mc);
 
  113           gebp(
res.getSubMapper(i2, 0), blockA, blockB, actual_mc, actual_kc,
 
  116         sybb(_res+resStride*i2 + resIncr*i2, resIncr, resStride, blockA, blockB + actual_kc*i2, actual_mc, actual_kc, 
alpha);
 
  120           Index j2 = i2+actual_mc;
 
  121           gebp(
res.getSubMapper(i2, j2), blockA, blockB+actual_kc*j2, actual_mc,
 
  138 template<
typename LhsScalar, 
typename RhsScalar, 
typename Index, 
int mr, 
int nr, 
bool ConjLhs, 
bool ConjRhs, 
int ResInnerStr
ide, 
int UpLo>
 
  151     ResMapper 
res(_res, resStride, resIncr);
 
  162       const RhsScalar* actual_b = blockB+
j*
depth;
 
  165         gebp_kernel1(
res.getSubMapper(0, 
j), blockA, actual_b, 
j, 
depth, actualBlockSize, 
alpha,
 
  179           typename ResMapper::LinearMapper r = 
res.getLinearMapper(
i,
j+
j1);
 
  200 template<
typename MatrixType, 
typename ProductType, 
int UpLo, 
bool IsOuterProduct>
 
  204 template<
typename MatrixType, 
typename ProductType, 
int UpLo>
 
  213     typedef typename LhsBlasTraits::DirectLinearAccessType ActualLhs;
 
  219     typedef typename RhsBlasTraits::DirectLinearAccessType ActualRhs;
 
  223     Scalar actualAlpha = 
alpha * LhsBlasTraits::extractScalarFactor(
prod.
lhs().derived()) * RhsBlasTraits::extractScalarFactor(
prod.
rhs().derived());
 
  226       mat.template triangularView<UpLo>().setZero();
 
  230       UseLhsDirectly = _ActualLhs::InnerStrideAtCompileTime==1,
 
  231       UseRhsDirectly = _ActualRhs::InnerStrideAtCompileTime==1
 
  236       (UseLhsDirectly ? 
const_cast<Scalar*
>(actualLhs.data()) : static_lhs.data()));
 
  241       (UseRhsDirectly ? 
const_cast<Scalar*
>(actualRhs.data()) : static_rhs.data()));
 
  248           ::run(actualLhs.size(), 
mat.data(), 
mat.outerStride(), actualLhsPtr, actualRhsPtr, actualAlpha);
 
  252 template<
typename MatrixType, 
typename ProductType, 
int UpLo>
 
  259     typedef typename LhsBlasTraits::DirectLinearAccessType ActualLhs;
 
  265     typedef typename RhsBlasTraits::DirectLinearAccessType ActualRhs;
 
  272       mat.template triangularView<UpLo>().setZero();
 
  276       LhsIsRowMajor = _ActualLhs::Flags&
RowMajorBit ? 1 : 0,
 
  277       RhsIsRowMajor = _ActualRhs::Flags&
RowMajorBit ? 1 : 0,
 
  287           MatrixType::MaxColsAtCompileTime, MatrixType::MaxColsAtCompileTime, _ActualRhs::MaxColsAtCompileTime> BlockingType;
 
  296             &actualLhs.coeffRef(SkipDiag&&(UpLo&
Lower)==
Lower ? 1 : 0,0), actualLhs.outerStride(),
 
  297             &actualRhs.coeffRef(0,SkipDiag&&(UpLo&
Upper)==
Upper ? 1 : 0), actualRhs.outerStride(),
 
  298             mat.data() + (SkipDiag ? (bool(IsRowMajor) != ((UpLo&
Lower)==
Lower) ? 
mat.innerStride() : 
mat.outerStride() ) : 0),
 
  299             mat.innerStride(), 
mat.outerStride(), actualAlpha, blocking);
 
  303 template<
typename MatrixType, 
unsigned int UpLo>
 
  304 template<
typename ProductType>
 
  310   general_product_to_triangular_selector<MatrixType, ProductType, UpLo, internal::traits<ProductType>::InnerSize==1>
::run(derived().nestedExpression().const_cast_derived(), 
prod, 
alpha, 
beta);
 
  317 #endif // EIGEN_GENERAL_MATRIX_MATRIX_TRIANGULAR_H