blob: fefa122101091182b60368c3346af54e6c3ec1cb [file] [log] [blame]
Michael Butler4b276a72020-08-06 23:22:35 -07001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "Callbacks.h"
18
19#include "Conversions.h"
20#include "PreparedModel.h"
21#include "Utils.h"
22
23#include <android/hardware/neuralnetworks/1.0/types.h>
24#include <android/hardware/neuralnetworks/1.2/IExecutionCallback.h>
25#include <android/hardware/neuralnetworks/1.2/IPreparedModelCallback.h>
26#include <android/hardware/neuralnetworks/1.2/types.h>
27#include <nnapi/IPreparedModel.h>
28#include <nnapi/Result.h>
29#include <nnapi/Types.h>
Michael Butler7fd03c22020-12-06 21:50:59 -080030#include <nnapi/hal/1.0/Callbacks.h>
Michael Butler4b276a72020-08-06 23:22:35 -070031#include <nnapi/hal/1.0/Conversions.h>
32#include <nnapi/hal/1.0/PreparedModel.h>
33#include <nnapi/hal/CommonUtils.h>
34#include <nnapi/hal/HandleError.h>
35#include <nnapi/hal/ProtectCallback.h>
36#include <nnapi/hal/TransferValue.h>
37
38#include <utility>
39
Michael Butleraad934b2020-12-13 23:06:06 -080040// See hardware/interfaces/neuralnetworks/utils/README.md for more information on HIDL interface
41// lifetimes across processes and for protecting asynchronous calls across HIDL.
42
Michael Butler4b276a72020-08-06 23:22:35 -070043namespace android::hardware::neuralnetworks::V1_2::utils {
44namespace {
45
Michael Butler4b276a72020-08-06 23:22:35 -070046nn::GeneralResult<std::pair<std::vector<nn::OutputShape>, nn::Timing>>
47convertExecutionGeneralResultsHelper(const hidl_vec<OutputShape>& outputShapes,
48 const Timing& timing) {
Michael Butler6547b2a2020-11-22 19:36:30 -080049 return std::make_pair(NN_TRY(nn::convert(outputShapes)), NN_TRY(nn::convert(timing)));
Michael Butler4b276a72020-08-06 23:22:35 -070050}
51
Michael Butler7fd03c22020-12-06 21:50:59 -080052} // namespace
53
54nn::GeneralResult<nn::SharedPreparedModel> prepareModelCallback(
55 V1_0::ErrorStatus status, const sp<IPreparedModel>& preparedModel) {
56 HANDLE_HAL_STATUS(status) << "model preparation failed with " << toString(status);
57 return NN_TRY(PreparedModel::create(preparedModel, /*executeSynchronously=*/true));
58}
59
60nn::ExecutionResult<std::pair<std::vector<nn::OutputShape>, nn::Timing>> executionCallback(
61 V1_0::ErrorStatus status, const hidl_vec<OutputShape>& outputShapes, const Timing& timing) {
62 if (status == V1_0::ErrorStatus::OUTPUT_INSUFFICIENT_SIZE) {
63 auto canonicalOutputShapes =
64 nn::convert(outputShapes).value_or(std::vector<nn::OutputShape>{});
65 return NN_ERROR(nn::ErrorStatus::OUTPUT_INSUFFICIENT_SIZE, std::move(canonicalOutputShapes))
66 << "execution failed with " << toString(status);
67 }
68 HANDLE_HAL_STATUS(status) << "execution failed with " << toString(status);
Michael Butler4b276a72020-08-06 23:22:35 -070069 return hal::utils::makeExecutionFailure(
70 convertExecutionGeneralResultsHelper(outputShapes, timing));
71}
72
Michael Butler4b276a72020-08-06 23:22:35 -070073Return<void> PreparedModelCallback::notify(V1_0::ErrorStatus status,
74 const sp<V1_0::IPreparedModel>& preparedModel) {
Michael Butler7fd03c22020-12-06 21:50:59 -080075 mData.put(V1_0::utils::prepareModelCallback(status, preparedModel));
Michael Butler4b276a72020-08-06 23:22:35 -070076 return Void();
77}
78
79Return<void> PreparedModelCallback::notify_1_2(V1_0::ErrorStatus status,
80 const sp<IPreparedModel>& preparedModel) {
Michael Butler7fd03c22020-12-06 21:50:59 -080081 mData.put(prepareModelCallback(status, preparedModel));
Michael Butler4b276a72020-08-06 23:22:35 -070082 return Void();
83}
84
85void PreparedModelCallback::notifyAsDeadObject() {
Michael Butler7fd03c22020-12-06 21:50:59 -080086 mData.put(NN_ERROR(nn::ErrorStatus::DEAD_OBJECT) << "Dead object");
Michael Butler4b276a72020-08-06 23:22:35 -070087}
88
89PreparedModelCallback::Data PreparedModelCallback::get() {
90 return mData.take();
91}
92
Michael Butler4b276a72020-08-06 23:22:35 -070093// ExecutionCallback methods begin here
94
95Return<void> ExecutionCallback::notify(V1_0::ErrorStatus status) {
Michael Butler7fd03c22020-12-06 21:50:59 -080096 mData.put(V1_0::utils::executionCallback(status));
Michael Butler4b276a72020-08-06 23:22:35 -070097 return Void();
98}
99
100Return<void> ExecutionCallback::notify_1_2(V1_0::ErrorStatus status,
101 const hidl_vec<OutputShape>& outputShapes,
102 const Timing& timing) {
Michael Butler7fd03c22020-12-06 21:50:59 -0800103 mData.put(executionCallback(status, outputShapes, timing));
Michael Butler4b276a72020-08-06 23:22:35 -0700104 return Void();
105}
106
107void ExecutionCallback::notifyAsDeadObject() {
Michael Butler7fd03c22020-12-06 21:50:59 -0800108 mData.put(NN_ERROR(nn::ErrorStatus::DEAD_OBJECT) << "Dead object");
Michael Butler4b276a72020-08-06 23:22:35 -0700109}
110
111ExecutionCallback::Data ExecutionCallback::get() {
112 return mData.take();
113}
114
Michael Butler4b276a72020-08-06 23:22:35 -0700115} // namespace android::hardware::neuralnetworks::V1_2::utils