Home
last modified time | relevance | path

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

/aosp_15_r20/external/armnn/delegate/opaque/src/
H A DOpaqueDelegateUtils.hpp176 const int* inputIndexArray; in Connect() local
178 if(TfLiteOpaqueNodeInputs(tfLiteNode, &inputIndexArray, &numInputs) != kTfLiteOk) in Connect()
193 if (data.m_OutputSlotForNode[inputIndexArray[inputIndex]] != nullptr) in Connect()
195 … data.m_OutputSlotForNode[inputIndexArray[inputIndex]]->Connect(layer->GetInputSlot(inputIndex)); in Connect()
555 const int* inputIndexArray; in IsOptionalOperandPresent() local
558 TfLiteStatus status = TfLiteOpaqueNodeInputs(tfLiteNode, &inputIndexArray, &numInputs); in IsOptionalOperandPresent()
566 if (numInputs > operandIndex && inputIndexArray[operandIndex] >= 0) in IsOptionalOperandPresent()
581 const int* inputIndexArray; in ProcessInputs() local
584 TfLiteStatus status = TfLiteOpaqueNodeInputs(tfLiteNode, &inputIndexArray, &numInputs); in ProcessInputs()
621 delegateData.m_OutputSlotForNode[inputIndexArray[inputIndex]] = &outputSlot; in ProcessInputs()
H A Darmnn_delegate.cpp551 const int* inputIndexArray; in Invoke() local
553 if(TfLiteOpaqueNodeInputs(tfLiteNode, &inputIndexArray, &numInputs) != kTfLiteOk) in Invoke()
562 …paqueTensor* tensor = TfLiteOpaqueContextGetOpaqueTensor(tfLiteContext, inputIndexArray[inputIdx]); in Invoke()