MCPcopy Create free account
hub / github.com/ARM-software/armnn / IsReadyForSplitAssignment

Function IsReadyForSplitAssignment

src/armnn/SubgraphViewSelector.cpp:387–399  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

385}
386
387bool IsReadyForSplitAssignment(LayerSelectionInfo::LayerInfoContainer& layerInfos, LayerSelectionInfo& layerInfo)
388{
389 bool ready = true;
390 ForEachLayerInput(layerInfos, layerInfo,
391 [&ready](LayerSelectionInfo& parentInfo)
392 {
393 if (!parentInfo.m_IsProcessed)
394 {
395 ready = false;
396 }
397 });
398 return ready;
399}
400
401SubgraphViewSelector::Subgraphs
402SubgraphViewSelector::SelectSubgraphs(SubgraphView& subgraph, const LayerSelectorFunction& selector)

Callers 1

SelectSubgraphsMethod · 0.85

Calls 1

ForEachLayerInputFunction · 0.85

Tested by

no test coverage detected