Home
last modified time | relevance | path

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

/frameworks/ml/nn/runtime/
DExecutionPlan.cpp199 auto i = mOperandMap.find(sourceOperandIndex); in addOperand()
200 if (i != mOperandMap.end()) { in addOperand()
208 mOperandMap.emplace(sourceOperandIndex, *stepOperandIndex); in addOperand()
422 const auto it = mOperandMap.find(stepOperandIndex); in recordTempAsStepModelOutput()
423 CHECK(it != mOperandMap.end()); in recordTempAsStepModelOutput()
DExecutionPlan.h224 std::unordered_map<uint32_t, uint32_t> mOperandMap; variable