| 418 | } |
| 419 | |
| 420 | core::TensorValue graph_reshape( |
| 421 | core::ModuleBuildContext & ctx, |
| 422 | const core::TensorValue & input, |
| 423 | const core::TensorShape & shape) { |
| 424 | return core::reshape_tensor(ctx, core::ensure_backend_addressable_layout(ctx, input), shape); |
| 425 | } |
| 426 | |
| 427 | core::TensorValue graph_transpose( |
| 428 | core::ModuleBuildContext & ctx, |
no test coverage detected