Searched defs:ProdOp (Results 1 – 2 of 2) sorted by relevance
278 struct ProdOp { struct279 inline T operator()(const T& a) const { return a; } in operator()280 inline T operator()(const T& a, const T& b) const { return a * b; } in operator()281 static constexpr T kNeutralElement = T(1);
47 class ProdOp : public XlaReductionOp { class49 explicit ProdOp(OpKernelConstruction* ctx) in ProdOp() function in tensorflow::__anonff6dd4aa0111::ProdOp