| 277 | namespace subgraph { |
| 278 | |
| 279 | EncodedSubgraph make_forward_graph( |
| 280 | const OpDef& def, SmallVector<LogicalTensorDesc> inputs) { |
| 281 | return EncodedSubgraph::make(*def.cast_final_safe<SubgraphOp>().graph); |
| 282 | } |
| 283 | |
| 284 | EncodedSubgraph make_backward_graph( |
| 285 | const OpDef& def, const SmallVector<LogicalTensorDesc>& inputs, |
no test coverage detected