| 15 | } |
| 16 | |
| 17 | core::TensorValue permute( |
| 18 | core::ModuleBuildContext & ctx, |
| 19 | const core::TensorValue & input, |
| 20 | std::array<int, core::kMaxTensorRank> axes) { |
| 21 | return TransposeModule({axes, input.shape.rank}).build(ctx, input); |
| 22 | } |
| 23 | |
| 24 | core::TensorValue reshape_heads( |
| 25 | core::ModuleBuildContext & ctx, |
no test coverage detected