Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.h493 class LogicalStep {
496 explicit LogicalStep(Args&&... args) : mStep(std::forward<Args>(args)...) {} in LogicalStep() function
771 const std::vector<std::shared_ptr<LogicalStep>>& forTest_compoundGetSteps() const;
893 std::vector<std::shared_ptr<LogicalStep>> mSteps;
DExecutionPlan.cpp860 void LogicalStep::dump() const { in dump()
1856 auto step = std::make_shared<LogicalStep>(std::in_place_type<ExecutionStep>, this, in createNewExecutionStep()
1864 auto step = std::make_shared<LogicalStep>(std::in_place_type<IfStep>); in createNewIfStep()
1872 auto step = std::make_shared<LogicalStep>(std::in_place_type<WhileStep>); in createNewWhileStep()
1880 auto step = std::make_shared<LogicalStep>(std::in_place_type<GotoStep>); in createNewGotoStep()
1947 const std::vector<std::shared_ptr<LogicalStep>>& ExecutionPlan::forTest_compoundGetSteps() const { in forTest_compoundGetSteps()
/packages/modules/NeuralNetworks/runtime/test/
DTestFailingDriver.cpp150 const std::vector<std::shared_ptr<LogicalStep>>& steps = plan.forTest_compoundGetSteps(); in TEST_F()
DTestPartitioningRandom.cpp114 using LogicalStep = nn::LogicalStep; typedef
1167 auto stepToDeviceId = [](const std::shared_ptr<LogicalStep>& step) { in TEST_P()
DTestPartitioning.cpp167 using LogicalStep = ::android::nn::LogicalStep; typedef
1536 void compare(const std::shared_ptr<LogicalStep> logicalStep, const PartitioningModel* model, in compare()