Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/
DExecutionBuilder.h90 int computeAsynchronously(std::shared_ptr<ExecutionCallback>* synchronizationCallback) { in computeAsynchronously() argument
91 CHECK(synchronizationCallback != nullptr); in computeAsynchronously()
92 return compute(synchronizationCallback); in computeAsynchronously()
148 int compute(std::shared_ptr<ExecutionCallback>* synchronizationCallback,
DExecutionBuilder.cpp1010 int ExecutionBuilder::compute(std::shared_ptr<ExecutionCallback>* synchronizationCallback, in compute() argument
1012 CHECK(synchronizationCallback == nullptr || burstBuilder == nullptr) in compute()
1015 const bool synchronous = (synchronizationCallback == nullptr); in compute()
1017 *synchronizationCallback = nullptr; in compute()
1085 *synchronizationCallback = executionCallback; in compute()