Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/
DValidateHal.cpp463 auto getSubgraph = in validateOperations() local
468 auto getInputCount = [&getSubgraph](const Operand& modelOperand) -> uint32_t { in validateOperations()
469 return getSubgraph(modelOperand)->inputIndexes.size(); in validateOperations()
471 auto getOutputCount = [&getSubgraph](const Operand& modelOperand) -> uint32_t { in validateOperations()
472 return getSubgraph(modelOperand)->outputIndexes.size(); in validateOperations()
474 auto getInputOperand = [&getSubgraph](const Operand& modelOperand, in validateOperations()
476 const Model::Subgraph& subgraph = *getSubgraph(modelOperand); in validateOperations()
480 auto getOutputOperand = [&getSubgraph](const Operand& modelOperand, in validateOperations()
482 const Model::Subgraph& subgraph = *getSubgraph(modelOperand); in validateOperations()
/packages/modules/NeuralNetworks/runtime/operation_converters/
DConv2DOperationConverter.cpp30 context->getSubgraph()->operands[operation.inputs[kFilterTensorIdx]])); in getConv2DInputs()
54 const Model::Subgraph* subgraph = context->getSubgraph(); in decomposeExplicitPadding()
145 const Model::Subgraph* subgraph = context->getSubgraph(); in convert()
DAddOperationConverter.cpp29 const Model::Subgraph* subgraph = context->getSubgraph(); in convert()
DSubGraphContext.h50 const Model::Subgraph* getSubgraph() const { return mSubgraph; } in getSubgraph() function
DDepthwiseConv2DOperationConverter.cpp29 const Model::Subgraph* subgraph = context->getSubgraph(); in convert()
/packages/modules/NeuralNetworks/common/types/src/
DValidation.cpp1547 const Model::Subgraph& getSubgraph(const std::vector<Model::Subgraph>& subgraphs, in getSubgraph() function
1552 return getSubgraph(subgraphs, modelOperand).inputIndexes.size(); in getInputCount()
1556 return getSubgraph(subgraphs, modelOperand).outputIndexes.size(); in getOutputCount()
1560 const Model::Subgraph& subgraph = getSubgraph(subgraphs, modelOperand); in getInputOperand()
1565 const Model::Subgraph& subgraph = getSubgraph(subgraphs, modelOperand); in getOutputOperand()