| 47 | return repeat_like(ctx, expanded, like); |
| 48 | } |
| 49 | |
| 50 | core::TensorValue slice_last_dim( |
| 51 | core::ModuleBuildContext & ctx, |
| 52 | const core::TensorValue & input, |
| 53 | int64_t offset, |
| 54 | int64_t length) { |
| 55 | return SliceModule({static_cast<int>(input.shape.rank - 1), offset, length}).build(ctx, input); |
| 56 | } |
| 57 | |
| 58 | core::TensorValue add_tensors( |
no test coverage detected