Home
last modified time | relevance | path

Searched refs:ExecutionPlan (Results 1 – 10 of 10) sorted by relevance

/frameworks/ml/nn/runtime/
DExecutionPlan.cpp185 ExecutionStep::ExecutionStep(ExecutionPlan* plan, uint32_t stepIndex, uint32_t sourceModelIndex, in ExecutionStep()
387 void ExecutionPlan::CompoundBody::findTempsAsStepModelOutputs() { in findTempsAsStepModelOutputs()
611 int ExecutionPlan::CompoundBody::finish(const SourceModels* sourceModels, in finish()
681 void ExecutionPlan::CompoundBody::findControlFlowBoundaryConstants( in findControlFlowBoundaryConstants()
715 int ExecutionPlan::SimpleBody::finish(const SourceModels*, int32_t executionPreference, in finish()
726 int ExecutionPlan::finish(int32_t executionPreference, int32_t priority, in finish()
732 ExecutionPlan::Controller::Controller(const ExecutionPlan* plan, ExecutionBuilder* executionBuilder, in Controller()
736 ExecutionPlan::Controller::Controller( in Controller()
737 const ExecutionPlan* plan, ExecutionBuilder* executionBuilder, in Controller()
776 std::vector<std::shared_ptr<ExecutionBurstController>> ExecutionPlan::makeBursts( in makeBursts()
[all …]
DExecutionPlan.h52 class ExecutionPlan; variable
116 ExecutionStep(ExecutionPlan* plan, uint32_t stepIndex, uint32_t sourceModelIndex,
181 ExecutionPlan* mPlan;
412 class ExecutionPlan {
414 ExecutionPlan(const ExecutionPlan&) = delete;
415 ExecutionPlan& operator=(const ExecutionPlan&) = delete;
417 ExecutionPlan() {} in ExecutionPlan() function
418 ~ExecutionPlan() { delete mBody; } in ~ExecutionPlan()
435 friend class ExecutionPlan; variable
444 Controller(const ExecutionPlan* plan, ExecutionBuilder* executionBuilder,
[all …]
DCompilationBuilder.h69 const ExecutionPlan& forTest_getExecutionPlan() const { return mPlan; } in forTest_getExecutionPlan()
76 ExecutionPlan mPlan;
DModelBuilder.h36 class ExecutionPlan; variable
131 ExecutionPlan* plan) const;
164 ExecutionPlan* plan) const;
DExecutionBuilder.cpp479 cpuFallbackPartial(const ExecutionPlan& plan, in cpuFallbackPartial()
480 std::shared_ptr<ExecutionPlan::Controller> controller) { in cpuFallbackPartial()
498 const ExecutionPlan& plan, in asyncStartComputePartitioned()
499 std::shared_ptr<ExecutionPlan::Controller> controller, in asyncStartComputePartitioned()
628 ExecutionBuilder* executionBuilder, const ExecutionPlan& plan, in startComputeFenced()
629 std::shared_ptr<ExecutionPlan::Controller> controller, const std::vector<int>& waitFor, in startComputeFenced()
771 std::shared_ptr<ExecutionPlan::Controller> controller = mPlan->makeController(this, nullptr); in computeFenced()
830 std::shared_ptr<ExecutionPlan::Controller> controller = in compute()
DExecutionBuilder.h42 class ExecutionPlan; variable
144 const ExecutionPlan* mPlan;
DAndroid.bp54 "ExecutionPlan.cpp",
/frameworks/ml/nn/runtime/test/
DTestPartitioning.cpp154 using ExecutionPlan = ::android::nn::ExecutionPlan; typedef
798 const std::optional<Deadline>& deadline, ExecutionPlan* plan) { in partitionTheWork()
896 const ExecutionPlan& getExecutionPlan() const { return builder()->forTest_getExecutionPlan(); } in getExecutionPlan()
1454 ExecutionPlan planA; in TEST_F()
1458 ASSERT_EQ(planA.forTest_getKind(), ExecutionPlan::Kind::SIMPLE); in TEST_F()
1466 ExecutionPlan planC; in TEST_F()
1470 ASSERT_EQ(planC.forTest_getKind(), ExecutionPlan::Kind::SIMPLE); in TEST_F()
1478 ExecutionPlan planB; in TEST_F()
1482 ASSERT_EQ(planB.forTest_getKind(), ExecutionPlan::Kind::COMPOUND); in TEST_F()
1547 ExecutionPlan planA; in TEST_F()
[all …]
DTestFailingDriver.cpp150 const ExecutionPlan& plan = compilationBuilder->forTest_getExecutionPlan(); in TEST_F()
200 const ExecutionPlan& plan = compilationBuilder->forTest_getExecutionPlan(); in TEST_F()
DTestPartitioningRandom.cpp96 using ExecutionPlan = nn::ExecutionPlan; typedef
226 const ExecutionPlan& getExecutionPlan() const { return builder()->forTest_getExecutionPlan(); } in getExecutionPlan()
1176 ASSERT_EQ(cWithFallback.getExecutionPlan().forTest_getKind(), ExecutionPlan::Kind::SIMPLE); in TEST_P()
1190 const ExecutionPlan& plan = c2->getExecutionPlan(); in TEST_P()
1192 case ExecutionPlan::Kind::SIMPLE: in TEST_P()
1195 case ExecutionPlan::Kind::COMPOUND: { in TEST_P()