| 1202 | } |
| 1203 | |
| 1204 | XlaOp XlaBuilder::ConvWithGeneralPadding( |
| 1205 | XlaOp lhs, XlaOp rhs, absl::Span<const int64> window_strides, |
| 1206 | absl::Span<const std::pair<int64, int64>> padding, |
| 1207 | int64 feature_group_count, int64 batch_group_count, |
| 1208 | const PrecisionConfig* precision_config) { |
| 1209 | return ConvGeneral(lhs, rhs, window_strides, padding, |
| 1210 | CreateDefaultConvDimensionNumbers(window_strides.size()), |
| 1211 | feature_group_count, batch_group_count, precision_config); |
| 1212 | } |
| 1213 | |
| 1214 | XlaOp XlaBuilder::ConvWithGeneralDimensions( |
| 1215 | XlaOp lhs, XlaOp rhs, absl::Span<const int64> window_strides, |
no test coverage detected