Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.h413 struct IfStep { struct
499 bool isIf() const { return std::holds_alternative<IfStep>(mStep); } in isIf()
505 IfStep* ifStep() { return &std::get<IfStep>(mStep); } in ifStep()
511 const IfStep* ifStep() const { return &std::get<IfStep>(mStep); } in ifStep()
517 IfStep* tryIfStep() { return std::get_if<IfStep>(&mStep); } in tryIfStep()
523 const IfStep* tryIfStep() const { return std::get_if<IfStep>(&mStep); } in tryIfStep()
530 std::variant<ExecutionStep, IfStep, WhileStep, GotoStep> mStep;
533 std::ostream& operator<<(std::ostream& os, const IfStep& step);
705 IfStep* createNewIfStep();
822 int nextCompound(const IfStep* step, std::shared_ptr<Controller> controller,
DExecutionPlan.cpp660 } else if (const IfStep* step = logicalStep->tryIfStep()) { in findTempsAsStepModelOutputs()
846 std::ostream& operator<<(std::ostream& os, const IfStep& step) { in operator <<()
862 if (const IfStep* step = tryIfStep()) { in dump()
921 } else if (IfStep* step = logicalStep->tryIfStep()) { in finish()
992 if (const IfStep* step = logicalStep->tryIfStep()) { in findControlFlowBoundaryConstants()
1019 } else if (const IfStep* step = logicalStep->tryIfStep()) { in findMemoryStepRoles()
1297 } else if (const IfStep* step = logicalStep->tryIfStep()) { in makeController()
1543 if (const IfStep* step = logicalStep->tryIfStep()) { in nextCompound()
1661 int ExecutionPlan::nextCompound(const IfStep* step, std::shared_ptr<Controller> controller, in nextCompound()
1862 IfStep* ExecutionPlan::createNewIfStep() { in createNewIfStep()
[all …]