Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/
DCpuExecutor.cpp1700 const bool condValue = *reinterpret_cast<const bool8*>(condOperand.buffer); in executeIfOperation() local
1701 VLOG(CPUEXE) << "CpuExecutor::executeIfOperation: condition value: " << condValue; in executeIfOperation()
1703 const uint32_t branchInputIndex = condValue ? op::kThenModelOperand : op::kElseModelOperand; in executeIfOperation()
1789 bool8 condValue = {/* initialized memory */}; in executeWhileOperation() local
1790 condOutput.buffer = &condValue; in executeWhileOperation()
1791 condOutput.length = sizeof(condValue); in executeWhileOperation()
1806 << static_cast<int>(condValue); in executeWhileOperation()
1807 if (!condValue) { in executeWhileOperation()
/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp1721 bool condValue; in nextCompound() local
1722 NN_RETURN_IF_ERROR(readConditionValue(controller, step->conditionOperandIndex, &condValue)); in nextCompound()
1723 controller->mNextStepIndex = condValue ? step->thenStepIndex : step->elseStepIndex; in nextCompound()
1725 condValue ? step->thenBranchInputOperands : step->elseBranchInputOperands; in nextCompound()
1727 condValue ? step->thenBranchOutputOperands : step->elseBranchOutputOperands; in nextCompound()
1804 bool condValue; in nextCompound() local
1805 NN_RETURN_IF_ERROR(readConditionValue(controller, step->condOutputOperand, &condValue)); in nextCompound()
1806 if (condValue) { in nextCompound()