Searched refs:trueModel (Results 1 – 1 of 1) sorted by relevance
/packages/modules/NeuralNetworks/runtime/test/ |
D | TestPartitioning.cpp | 825 void addIfOperation(const uint32_t cond, const PartitioningModel& trueModel, in addIfOperation() argument 828 const uint32_t opndTrue = addRefModelOperand(trueModel); in addIfOperation() 2731 auto trueModel = std::make_unique<PartitioningModel>(); in createControlFlowModelForCachingTests() local 2733 const uint32_t opnd0 = trueModel->addFloatOperand(); in createControlFlowModelForCachingTests() 2734 const uint32_t opnd1 = trueModel->addFloatOperand(); in createControlFlowModelForCachingTests() 2735 const uint32_t opnd2 = trueModel->addOperation2To1V1_0(0, opnd0, opnd1); in createControlFlowModelForCachingTests() 2736 trueModel->identifyInputsAndOutputs({opnd0, opnd1}, {opnd2}); in createControlFlowModelForCachingTests() 2737 trueModel->finish(); in createControlFlowModelForCachingTests() 2738 ASSERT_TRUE(trueModel->isValid()); in createControlFlowModelForCachingTests() 2757 mainModel->addIfOperation(opnd0, *trueModel, *falseModel, {opnd1, opnd2}, {opnd3}); in createControlFlowModelForCachingTests() [all …]
|