Home
last modified time | relevance | path

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

/frameworks/ml/nn/runtime/
DExecutionPlan.cpp137 int ExecutionStep::addOperand(uint32_t fromOperandIndex, uint32_t* toOperandIndex, in addOperand() argument
140 auto i = mOperandMap.find(fromOperandIndex); in addOperand()
149 mOperandMap.insert(std::pair<uint32_t, uint32_t>(fromOperandIndex, *toOperandIndex)); in addOperand()
152 const Operand& operand = fromModel.getOperand(fromOperandIndex); in addOperand()
198 mTempsAsSubModelInputs.push_back(std::make_pair(fromOperandIndex, *toOperandIndex)); in addOperand()
203 mPlan->recordTemporaryDef(fromOperandIndex, mIndex); in addOperand()
207 mModelInputs.push_back(std::make_pair(fromOperandIndex, *toOperandIndex)); in addOperand()
214 … mOutputsAsSubModelInputs.push_back(std::make_pair(fromOperandIndex, *toOperandIndex)); in addOperand()
218 mModelOutputs.push_back(std::make_pair(fromOperandIndex, *toOperandIndex)); in addOperand()
DExecutionPlan.h51 int addOperand(uint32_t fromOperandIndex, uint32_t* toOperandIndex,