HomeSort by relevance Sort by last modified time
    Searched refs:executionCallback (Results 1 - 3 of 3) sorted by null

  /hardware/interfaces/neuralnetworks/1.0/vts/functional/
VtsHalNeuralnetworksV1_0TargetTest.cpp 36 using ::android::hardware::neuralnetworks::V1_0::implementation::ExecutionCallback;
223 sp<ExecutionCallback> executionCallback = new ExecutionCallback();
224 ASSERT_NE(nullptr, executionCallback.get());
225 executionCallback->on_finish(postWork);
226 Return<ErrorStatus> executeLaunchStatus = preparedModel->execute(request, executionCallback);
230 executionCallback->wait();
231 ErrorStatus executionReturnStatus = executionCallback->getStatus();
242 sp<ExecutionCallback> executionCallback = new ExecutionCallback()
    [all...]
GeneratedTestHarness.cpp 36 using ::android::hardware::neuralnetworks::V1_0::implementation::ExecutionCallback;
199 sp<ExecutionCallback> executionCallback = new ExecutionCallback();
200 ASSERT_NE(nullptr, executionCallback.get());
202 {.inputs = inputs_info, .outputs = outputs_info, .pools = pools}, executionCallback);
207 executionCallback->wait();
208 ErrorStatus executionReturnStatus = executionCallback->getStatus();
  /frameworks/ml/nn/runtime/
ExecutionBuilder.cpp 185 // Ensure that executionCallback->notify() is called.
187 const sp<ExecutionCallback>& executionCallback) {
193 sp<ExecutionCallback> fallbackCallback;
195 executionCallback->notify(ErrorStatus::GENERAL_FAILURE);
199 executionCallback->notify(fallbackCallback->getStatus());
204 // return true. (Do not call executionCallback->notify().)
206 // ensure that executionCallback->notify() is called, and return
211 const sp<ExecutionCallback>& executionCallback) {
    [all...]

Completed in 67 milliseconds