| 219 | } |
| 220 | |
| 221 | core::TensorValue graph_reshape( |
| 222 | core::ModuleBuildContext & ctx, |
| 223 | const core::TensorValue & input, |
| 224 | const core::TensorShape & shape) { |
| 225 | return core::reshape_tensor(ctx, graph_contiguous(ctx, input), shape); |
| 226 | } |
| 227 | |
| 228 | core::TensorValue graph_transpose( |
| 229 | core::ModuleBuildContext & ctx, |
no test coverage detected