Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp980 CHECK(!containsUnknownSize(step->bodyInputOperands)); in finish()
1125 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in findMemoryStepRoles()
1126 for (uint32_t i = 0; i < step->bodyInputOperands.size(); i++) { in findMemoryStepRoles()
1127 analyzer.setUsedBy(step->condInputOperands[i], step->bodyInputOperands[i]); in findMemoryStepRoles()
1816 CHECK_GE(step->bodyInputOperands.size(), step->bodyOutputOperands.size()); in nextCompound()
1817 CHECK_EQ(step->bodyInputOperands.size(), step->outerInputOperands.size()); in nextCompound()
1818 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in nextCompound()
1821 for (uint32_t i = 0, n = step->bodyInputOperands.size(); i < n; ++i) { in nextCompound()
1822 controller->setInput(step->condInputOperands[i], step->bodyInputOperands[i]); in nextCompound()
2381 whileStep->bodyInputOperands.emplace_back( in partitionTheWorkInternal()
DExecutionPlan.h470 std::vector<SourceOperandIndex> bodyInputOperands; member