| 1926 | } |
| 1927 | |
| 1928 | XlaOp XlaBuilder::Reduce(XlaOp operand, XlaOp init_value, |
| 1929 | const XlaComputation& computation, |
| 1930 | absl::Span<const int64> dimensions_to_reduce) { |
| 1931 | return Reduce(absl::Span<const XlaOp>({operand}), |
| 1932 | absl::Span<const XlaOp>({init_value}), computation, |
| 1933 | dimensions_to_reduce); |
| 1934 | } |
| 1935 | |
| 1936 | XlaOp XlaBuilder::Reduce(absl::Span<const XlaOp> operands, |
| 1937 | absl::Span<const XlaOp> init_values, |
no test coverage detected