Home
last modified time | relevance | path

Searched refs:getSubgraph (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NeuralNetworks/common/
DValidateHal.cpp462 auto getSubgraph = in validateOperations() local
467 auto getInputCount = [&getSubgraph](const Operand& modelOperand) -> uint32_t { in validateOperations()
468 return getSubgraph(modelOperand)->inputIndexes.size(); in validateOperations()
470 auto getOutputCount = [&getSubgraph](const Operand& modelOperand) -> uint32_t { in validateOperations()
471 return getSubgraph(modelOperand)->outputIndexes.size(); in validateOperations()
473 auto getInputOperand = [&getSubgraph](const Operand& modelOperand, in validateOperations()
475 const Model::Subgraph& subgraph = *getSubgraph(modelOperand); in validateOperations()
479 auto getOutputOperand = [&getSubgraph](const Operand& modelOperand, in validateOperations()
481 const Model::Subgraph& subgraph = *getSubgraph(modelOperand); in validateOperations()
DValidation.cpp1593 const Model::Subgraph& getSubgraph(const std::vector<Model::Subgraph>& subgraphs, in getSubgraph() function
1598 return getSubgraph(subgraphs, modelOperand).inputIndexes.size(); in getInputCount()
1602 return getSubgraph(subgraphs, modelOperand).outputIndexes.size(); in getOutputCount()
1606 const Model::Subgraph& subgraph = getSubgraph(subgraphs, modelOperand); in getInputOperand()
1611 const Model::Subgraph& subgraph = getSubgraph(subgraphs, modelOperand); in getOutputOperand()