Home
last modified time | relevance | path

Searched refs:mPlan (Results 1 – 6 of 6) sorted by relevance

/frameworks/ml/nn/runtime/
DCompilationBuilder.cpp63 mPlan.setCaching(&mCacheDir, mToken); in finish()
66 int n = mModel->partitionTheWork(mDevices, mPreference, mPriority, deadline, &mPlan); in finish()
97 mPlan.reset(); in finish()
98 mPlan.becomeSingleStep(DeviceManager::getCpuDevice(), mModel); in finish()
99 return mPlan.finish(mPreference, mPriority, deadline); in finish()
186 if (!mPlan.isValid()) { in createExecution()
201 if (!mPlan.isValid()) { in createBurst()
207 mPlan.makeBursts(mPreference); in createBurst()
218 if (!mPlan.isValid()) { in forEachStepRoleOfInput()
227 mPlan.forEachStepRoleOfInput(index, callback); in forEachStepRoleOfInput()
[all …]
DCompilationBuilder.h69 const ExecutionPlan& forTest_getExecutionPlan() const { return mPlan; } in forTest_getExecutionPlan()
76 ExecutionPlan mPlan; variable
DExecutionBuilder.cpp93 mPlan(&compilation->mPlan), in ExecutionBuilder()
102 return mPlan->getSourceModels().getModel(index); in getSourceModel()
771 std::shared_ptr<ExecutionPlan::Controller> controller = mPlan->makeController(this, nullptr); in computeFenced()
775 this, *mPlan, controller, waitFor, timeoutDurationAfterFence, deadline, allowFallback); in computeFenced()
831 mPlan->makeController(this, burstBuilder); in compute()
836 asyncStartComputePartitioned(this, *mPlan, controller, allowFallback, deadline, in compute()
857 asyncStartComputePartitioned(this, *mPlan, controller, allowFallback, deadline, in compute()
863 asyncStartComputePartitioned(this, *mPlan, controller, allowFallback, in compute()
DExecutionBuilder.h144 const ExecutionPlan* mPlan; variable
DExecutionPlan.h181 ExecutionPlan* mPlan; variable
470 const ExecutionPlan* mPlan; variable
DExecutionPlan.cpp187 : mPlan(plan), in ExecutionStep()
269 mPlan->recordTemporaryDef(SourceOperandIndex(mSourceModelIndex, sourceOperandIndex), in addOperand()
428 return mPlan->getSourceModels().getModel(mSourceModelIndex); in getSourceModel()
566 return compile(*mDevice, mStepModel, executionPreference, priority, {}, *mPlan->getCacheDir(), in finishStepModel()
745 : mPlan(plan), in Controller()