Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp936 CHECK(!containsUnknownSize(step->bodyInputOperands)); in finish()
1080 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in findMemoryStepRoles()
1081 for (uint32_t i = 0; i < step->bodyInputOperands.size(); i++) { in findMemoryStepRoles()
1082 analyzer.setUsedBy(step->condInputOperands[i], step->bodyInputOperands[i]); in findMemoryStepRoles()
1764 CHECK_GE(step->bodyInputOperands.size(), step->bodyOutputOperands.size()); in nextCompound()
1765 CHECK_EQ(step->bodyInputOperands.size(), step->outerInputOperands.size()); in nextCompound()
1766 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in nextCompound()
1769 for (uint32_t i = 0, n = step->bodyInputOperands.size(); i < n; ++i) { in nextCompound()
1770 controller->setInput(step->condInputOperands[i], step->bodyInputOperands[i]); in nextCompound()
2328 whileStep->bodyInputOperands.emplace_back( in partitionTheWorkInternal()
DExecutionPlan.h470 std::vector<SourceOperandIndex> bodyInputOperands; member