Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp978 CHECK(!containsUnknownSize(step->condInputOperands)); in finish()
1112 CHECK_EQ(step->condInputOperands.size(), step->outerInputOperands.size()); in findMemoryStepRoles()
1114 analyzer.setUsedBy(step->outerInputOperands[i], step->condInputOperands[i]); in findMemoryStepRoles()
1119 CHECK_GE(step->condInputOperands.size(), step->bodyOutputOperands.size()); in findMemoryStepRoles()
1121 analyzer.setUsedBy(step->bodyOutputOperands[i], step->condInputOperands[i]); in findMemoryStepRoles()
1125 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in findMemoryStepRoles()
1127 analyzer.setUsedBy(step->condInputOperands[i], step->bodyInputOperands[i]); in findMemoryStepRoles()
1776 CHECK_EQ(step->condInputOperands.size(), step->outerInputOperands.size()); in nextCompound()
1777 CHECK_GE(step->condInputOperands.size(), loopBodyOutputCount); in nextCompound()
1778 for (uint32_t i = 0, n = step->condInputOperands.size(); i < n; ++i) { in nextCompound()
[all …]
DExecutionPlan.h465 std::vector<SourceOperandIndex> condInputOperands; member