Home
last modified time | relevance | path

Searched refs:LazyCoeffBasedProductMode (Results 1 – 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Core/
DGeneralProduct.h112 … struct product_type_selector<Small, Small, 1> { enum { ret = LazyCoeffBasedProductMode }; };
113 … struct product_type_selector<Small, Large, 1> { enum { ret = LazyCoeffBasedProductMode }; };
114 … struct product_type_selector<Large, Small, 1> { enum { ret = LazyCoeffBasedProductMode }; };
167 struct ProductReturnType<Lhs,Rhs,LazyCoeffBasedProductMode>
176 struct LazyProductReturnType : public ProductReturnType<Lhs,Rhs,LazyCoeffBasedProductMode>
/external/eigen/Eigen/src/Core/util/
DConstants.h414 enum { CoeffBasedProductMode, LazyCoeffBasedProductMode, OuterProduct, InnerProduct, GemvProduct, G… enumerator
/external/eigen/bench/
Dproduct_threshold.cpp33 if(mode==LazyCoeffBasedProductMode) std::cout << "l"; in print_mode()