| 2996 | } |
| 2997 | |
| 2998 | XlaOp SliceInDim(const XlaOp operand, int64 start_index, int64 limit_index, |
| 2999 | int64 stride, int64 dimno) { |
| 3000 | return operand.builder()->SliceInDim(operand, start_index, limit_index, |
| 3001 | stride, dimno); |
| 3002 | } |
| 3003 | |
| 3004 | XlaOp DynamicSlice(const XlaOp operand, const XlaOp start_indices, |
| 3005 | absl::Span<const int64> slice_sizes) { |
no test coverage detected