Searched refs:makeExecution (Results 1 – 4 of 4) sorted by relevance
/hardware/interfaces/neuralnetworks/utils/common/src/ |
D | ResilientExecution.cpp | 67 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()
|
D | ResilientBurst.cpp | 126 ResilientExecution::Factory makeExecution = [burst = std::move(self), request, measure, in createReusableExecution() 132 return ResilientExecution::create(std::move(makeExecution)); in createReusableExecution()
|
D | ResilientPreparedModel.cpp | 144 ResilientExecution::Factory makeExecution = [preparedModel = std::move(self), request, measure, in createReusableExecution() 150 return ResilientExecution::create(std::move(makeExecution)); in createReusableExecution()
|
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/ |
D | ResilientExecution.h | 41 Factory makeExecution); 43 ResilientExecution(PrivateConstructorTag tag, Factory makeExecution,
|