| 3335 | } |
| 3336 | |
| 3337 | XlaOp ReduceWindow(const XlaOp operand, const XlaOp init_value, |
| 3338 | const XlaComputation& computation, |
| 3339 | absl::Span<const int64> window_dimensions, |
| 3340 | absl::Span<const int64> window_strides, Padding padding) { |
| 3341 | return operand.builder()->ReduceWindow(operand, init_value, computation, |
| 3342 | window_dimensions, window_strides, |
| 3343 | padding); |
| 3344 | } |
| 3345 | |
| 3346 | XlaOp ReduceWindowWithGeneralPadding( |
| 3347 | const XlaOp operand, const XlaOp init_value, |