Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp934 CHECK(!containsUnknownSize(step->condInputOperands)); in finish()
1067 CHECK_EQ(step->condInputOperands.size(), step->outerInputOperands.size()); in findMemoryStepRoles()
1069 analyzer.setUsedBy(step->outerInputOperands[i], step->condInputOperands[i]); in findMemoryStepRoles()
1074 CHECK_GE(step->condInputOperands.size(), step->bodyOutputOperands.size()); in findMemoryStepRoles()
1076 analyzer.setUsedBy(step->bodyOutputOperands[i], step->condInputOperands[i]); in findMemoryStepRoles()
1080 CHECK_EQ(step->bodyInputOperands.size(), step->condInputOperands.size()); in findMemoryStepRoles()
1082 analyzer.setUsedBy(step->condInputOperands[i], step->bodyInputOperands[i]); in findMemoryStepRoles()
1724 CHECK_EQ(step->condInputOperands.size(), step->outerInputOperands.size()); in nextCompound()
1725 CHECK_GE(step->condInputOperands.size(), loopBodyOutputCount); in nextCompound()
1726 for (uint32_t i = 0, n = step->condInputOperands.size(); i < n; ++i) { in nextCompound()
[all …]
DExecutionPlan.h465 std::vector<SourceOperandIndex> condInputOperands; member