Home
last modified time | relevance | path

Searched refs:InnerProduct (Results 1 – 8 of 8) sorted by relevance

/external/eigen/bench/
Dproduct_threshold.cpp20 ret = M==1 && N==1 ? InnerProduct
30 if(mode==InnerProduct) std::cout << "i"; in print_mode()
/external/eigen/Eigen/src/Core/util/
DConstants.h484 …duct, CoeffBasedProductMode, LazyCoeffBasedProductMode, OuterProduct, InnerProduct, GemvProduct, G… enumerator
/external/eigen/Eigen/src/Core/
DGeneralProduct.h87 …e<int Depth> struct product_type_selector<1, 1, Depth> { enum { ret = InnerProduct }; };
88 …e<> struct product_type_selector<1, 1, 1> { enum { ret = InnerProduct }; };
DProduct.h121 class dense_product_base<Lhs, Rhs, Option, InnerProduct>
DProductEvaluators.h246 struct generic_product_impl<Lhs,Rhs,DenseShape,DenseShape,InnerProduct>
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp1721 SmallVector<Value *, 4> InnerProduct; in buildMinimalMultiplyDAG() local
1722 InnerProduct.push_back(Factors[LastIdx].Base); in buildMinimalMultiplyDAG()
1724 InnerProduct.push_back(Factors[Idx].Base); in buildMinimalMultiplyDAG()
1730 Value *M = Factors[LastIdx].Base = buildMultiplyTree(Builder, InnerProduct); in buildMinimalMultiplyDAG()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DReassociate.cpp1745 SmallVector<Value *, 4> InnerProduct; in buildMinimalMultiplyDAG() local
1746 InnerProduct.push_back(Factors[LastIdx].Base); in buildMinimalMultiplyDAG()
1748 InnerProduct.push_back(Factors[Idx].Base); in buildMinimalMultiplyDAG()
1754 Value *M = Factors[LastIdx].Base = buildMultiplyTree(Builder, InnerProduct); in buildMinimalMultiplyDAG()
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp502 constexpr int InnerProduct = ZipFoldR(MulAdd, 5, xs, ys, 0); variable
503 static_assert(InnerProduct == 35, "");