Home
last modified time | relevance | path

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

/aosp12/packages/modules/NeuralNetworks/runtime/
H A DExecutionPlan.cpp627 mSourceOperandToOutputIndex.end()); in findModelOutputsThatAreDownstreamInputs()
955 mSourceOperandToOutputIndex[index] = i; in finish()
1594 mSourceOperandToOutputIndex.count(innerOperand) + in setInput()
1600 mSourceOperandToOutputIndex.erase(innerOperand); in setInput()
1608 } else if (auto it = mSourceOperandToOutputIndex.find(outerOperand); in setInput()
1609 it != mSourceOperandToOutputIndex.end()) { in setInput()
1610 mSourceOperandToOutputIndex.emplace(innerOperand, it->second); in setInput()
1627 mSourceOperandToOutputIndex.count(innerOperand), in setOutput()
1631 mSourceOperandToOutputIndex.erase(innerOperand); in setOutput()
1636 it != mSourceOperandToOutputIndex.end()) { in setOutput()
[all …]
H A DExecutionPlan.h655 std::map<SourceOperandIndex, uint32_t> mSourceOperandToOutputIndex; variable
915 std::map<SourceOperandIndex, uint32_t> mSourceOperandToOutputIndex; member