Home
last modified time | relevance | path

Searched refs:LogicalStep (Results 1 – 4 of 4) sorted by relevance

/frameworks/ml/nn/runtime/
DExecutionPlan.h344 class LogicalStep {
347 explicit LogicalStep(Args&&... args) : mStep(std::forward<Args>(args)...) {} in LogicalStep() function
581 const std::vector<std::shared_ptr<LogicalStep>>& forTest_compoundGetSteps() const;
681 std::vector<std::shared_ptr<LogicalStep>> mSteps;
DExecutionPlan.cpp597 void LogicalStep::dump() const { in dump()
1439 auto step = std::make_shared<LogicalStep>(std::in_place_type<ExecutionStep>, this, in createNewExecutionStep()
1447 auto step = std::make_shared<LogicalStep>(std::in_place_type<IfStep>); in createNewIfStep()
1455 auto step = std::make_shared<LogicalStep>(std::in_place_type<WhileStep>); in createNewWhileStep()
1463 auto step = std::make_shared<LogicalStep>(std::in_place_type<GotoStep>); in createNewGotoStep()
1523 const std::vector<std::shared_ptr<LogicalStep>>& ExecutionPlan::forTest_compoundGetSteps() const { in forTest_compoundGetSteps()
/frameworks/ml/nn/runtime/test/
DTestFailingDriver.cpp151 const std::vector<std::shared_ptr<LogicalStep>>& steps = plan.forTest_compoundGetSteps(); in TEST_F()
DTestPartitioning.cpp158 using LogicalStep = ::android::nn::LogicalStep; typedef
1391 void compare(const std::shared_ptr<LogicalStep> logicalStep, const PartitioningModel* model, in compare()