| 495 | } |
| 496 | |
| 497 | void SubgraphView::SubstituteSubgraph(SubgraphView& subgraph, IConnectableLayer* substituteLayer) |
| 498 | { |
| 499 | ARMNN_THROW_INVALIDARG_MSG_IF_FALSE(substituteLayer, "substituteLayer should not be null"); |
| 500 | |
| 501 | SubgraphView substituteSubgraph(substituteLayer); |
| 502 | |
| 503 | SubstituteSubgraph(subgraph, substituteSubgraph); |
| 504 | } |
| 505 | |
| 506 | void SubgraphView::UpdateSubgraphViewSlotPointers(SubgraphView& patternSubgraph, |
| 507 | const SubgraphView& substituteSubgraph) |
nothing calls this directly
no test coverage detected