| 453 | }; |
| 454 | |
| 455 | inline Graph::Iterator Graph::GetPosInGraph(Layer& layer) |
| 456 | { |
| 457 | auto it = m_PosInGraphMap.find(&layer); |
| 458 | if (it == m_PosInGraphMap.end()) |
| 459 | { |
| 460 | throw armnn::Exception("unable to find layer in graph map."); |
| 461 | } |
| 462 | return it->second; |
| 463 | } |
| 464 | |
| 465 | template <typename LayerT, typename... Args> |
| 466 | inline LayerT* Graph::AddLayer(Args&&... args) |
no test coverage detected