Home
last modified time | relevance | path

Searched refs:synchronizationCallback (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NeuralNetworks/runtime/
DExecutionBuilder.h97 int computeAsynchronously(std::shared_ptr<ExecutionCallback>* synchronizationCallback) { in computeAsynchronously() argument
98 CHECK(synchronizationCallback != nullptr); in computeAsynchronously()
99 return compute(synchronizationCallback); in computeAsynchronously()
167 int compute(std::shared_ptr<ExecutionCallback>* synchronizationCallback,
DExecutionBuilder.cpp1051 int ExecutionBuilder::compute(std::shared_ptr<ExecutionCallback>* synchronizationCallback, in compute() argument
1053 CHECK(synchronizationCallback == nullptr || burstBuilder == nullptr) in compute()
1056 const bool synchronous = (synchronizationCallback == nullptr); in compute()
1058 *synchronizationCallback = nullptr; in compute()
1130 *synchronizationCallback = executionCallback; in compute()