Home
last modified time | relevance | path

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

/hardware/interfaces/neuralnetworks/utils/common/src/
DResilientExecution.cpp67 Factory makeExecution) { in create() argument
68 if (makeExecution == nullptr) { in create()
72 auto execution = NN_TRY(makeExecution()); in create()
74 return std::make_shared<ResilientExecution>(PrivateConstructorTag{}, std::move(makeExecution), in create()
78 ResilientExecution::ResilientExecution(PrivateConstructorTag /*tag*/, Factory makeExecution, in ResilientExecution() argument
80 : kMakeExecution(std::move(makeExecution)), mExecution(std::move(execution)) { in ResilientExecution()
DResilientBurst.cpp121 ResilientExecution::Factory makeExecution = in createReusableExecution()
125 return ResilientExecution::create(std::move(makeExecution)); in createReusableExecution()
DResilientPreparedModel.cpp137 ResilientExecution::Factory makeExecution = in createReusableExecution()
141 return ResilientExecution::create(std::move(makeExecution)); in createReusableExecution()
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/
DResilientExecution.h41 Factory makeExecution);
43 ResilientExecution(PrivateConstructorTag tag, Factory makeExecution,