| 3091 | } |
| 3092 | |
| 3093 | XlaOp Conv(const XlaOp lhs, const XlaOp rhs, |
| 3094 | absl::Span<const int64> window_strides, Padding padding, |
| 3095 | int64 feature_group_count, int64 batch_group_count, |
| 3096 | const PrecisionConfig* precision_config) { |
| 3097 | return lhs.builder()->Conv(lhs, rhs, window_strides, padding, |
| 3098 | feature_group_count, batch_group_count, |
| 3099 | precision_config); |
| 3100 | } |
| 3101 | |
| 3102 | XlaOp ConvWithGeneralPadding(const XlaOp lhs, const XlaOp rhs, |
| 3103 | absl::Span<const int64> window_strides, |