Searched refs:ExecutionPlan (Results 1 – 10 of 10) sorted by relevance
/frameworks/ml/nn/runtime/ |
D | ExecutionPlan.cpp | 185 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 …]
|
D | ExecutionPlan.h | 52 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 …]
|
D | CompilationBuilder.h | 69 const ExecutionPlan& forTest_getExecutionPlan() const { return mPlan; } in forTest_getExecutionPlan() 76 ExecutionPlan mPlan;
|
D | ModelBuilder.h | 36 class ExecutionPlan; variable 131 ExecutionPlan* plan) const; 164 ExecutionPlan* plan) const;
|
D | ExecutionBuilder.cpp | 479 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()
|
D | ExecutionBuilder.h | 42 class ExecutionPlan; variable 144 const ExecutionPlan* mPlan;
|
D | Android.bp | 54 "ExecutionPlan.cpp",
|
/frameworks/ml/nn/runtime/test/ |
D | TestPartitioning.cpp | 154 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 …]
|
D | TestFailingDriver.cpp | 150 const ExecutionPlan& plan = compilationBuilder->forTest_getExecutionPlan(); in TEST_F() 200 const ExecutionPlan& plan = compilationBuilder->forTest_getExecutionPlan(); in TEST_F()
|
D | TestPartitioningRandom.cpp | 96 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()
|