blob: 43e2c563cc8739e87224eb0c24f6bb27dcfb0655 [file] [log] [blame]
Slava Shklyaev8e139a72018-09-07 15:27:24 +01001/*
2 * Copyright (C) 2018 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
17package android.hardware.neuralnetworks@1.2;
18
19import @1.0::ErrorStatus;
Slava Shklyaev8e139a72018-09-07 15:27:24 +010020import @1.1::ExecutionPreference;
21import @1.1::IDevice;
Xusong Wang1a06e772018-10-31 08:43:12 -070022import IPreparedModelCallback;
Slava Shklyaev8e139a72018-09-07 15:27:24 +010023
24/**
25 * This interface represents a device driver.
26 */
27interface IDevice extends @1.1::IDevice {
28 /**
Miao Wang618028b2018-09-20 11:35:42 -070029 * Get the version string of the driver implementation.
30 *
31 * The version string must be a unique token among the set of version strings of
32 * drivers of a specific device. The token identifies the device driver's
33 * implementation. The token must not be confused with the feature level which is solely
34 * defined by the interface version. This API is opaque to the Android framework, but the
35 * Android framework may use the information for debugging or to pass on to NNAPI applications.
36 *
37 * Application developers sometimes have specific requirements to ensure good user experiences,
38 * and they need more information to make intelligent decisions when the Android framework cannot.
39 * For example, combined with the device name and other information, the token can help
40 * NNAPI applications filter devices based on their needs:
41 * - An application demands a certain level of performance, but a specific version of
42 * the driver cannot meet that requirement because of a performance regression.
43 * The application can blacklist the driver based on the version provided.
44 * - An application has a minimum precision requirement, but certain versions of
45 * the driver cannot meet that requirement because of bugs or certain optimizations.
46 * The application can filter out versions of these drivers.
47 *
48 * @return status Error status returned from querying the version string. Must be:
49 * - NONE if the query was successful
50 * - DEVICE_UNAVAILABLE if driver is offline or busy
51 * - GENERAL_FAILURE if the query resulted in an
52 * unspecified error
53 * @return version The version string of the device implementation.
54 * Must have nonzero length
55 */
56 getVersionString() generates (ErrorStatus status, string version);
57
58 /**
Miao Wang7176fe72018-09-20 13:30:31 -070059 * Get the type of a given device.
60 *
61 * The device type can be used to help application developers to distribute
62 * Machine Learning workloads and other workloads such as graphical rendering.
63 * E.g., for an app which renders AR scenes based on real time object detection
64 * results, the developer could choose an ACCELERATOR type device for ML
65 * workloads, and reserve GPU for graphical rendering.
66 *
67 * @param status Error status returned from querying the device type. Must be:
68 * - NONE if the query was successful
69 * - DEVICE_UNAVAILABLE if driver is offline or busy
70 * - GENERAL_FAILURE if the query resulted in an
71 * unspecified error
72 * @param type The DeviceType of the device. Please note, this is not a
73 * bitfield of DeviceTypes. Each device must only be of a
74 * single DeviceType.
75 */
76 getType() generates (ErrorStatus status, DeviceType type);
77
78 /**
David Gross2d47c802019-03-15 17:26:32 -070079 * Gets the capabilities of a driver.
80 *
81 * @return status Error status of the call, must be:
82 * - NONE if successful
83 * - DEVICE_UNAVAILABLE if driver is offline or busy
84 * - GENERAL_FAILURE if there is an unspecified error
85 * @return capabilities Capabilities of the driver.
86 */
87 getCapabilities_1_2() generates (ErrorStatus status, Capabilities capabilities);
88
89 /**
Slava Shklyaevc9ff0992018-11-20 15:29:01 +000090 * Gets information about extensions supported by the driver implementation.
91 *
92 * All extension operations and operands must be fully supported for the
93 * extension to appear in the list of supported extensions.
94 *
95 * @return status Error status of the call, must be:
96 * - NONE if successful
97 * - DEVICE_UNAVAILABLE if driver is offline or busy
98 * - GENERAL_FAILURE if there is an unspecified error
99 * @return extensions A list of supported extensions.
100 */
101 getSupportedExtensions()
102 generates (ErrorStatus status, vec<Extension> extensions);
103
104 /**
Slava Shklyaev8e139a72018-09-07 15:27:24 +0100105 * Gets the supported operations in a model.
106 *
107 * getSupportedOperations indicates which operations of a model are fully
108 * supported by the vendor driver. If an operation may not be supported for
109 * any reason, getSupportedOperations must return false for that operation.
110 *
111 * @param model A model whose operations--and their corresponding operands--
112 * are to be verified by the driver.
113 * @return status Error status of the call, must be:
114 * - NONE if successful
115 * - DEVICE_UNAVAILABLE if driver is offline or busy
116 * - GENERAL_FAILURE if there is an unspecified error
117 * - INVALID_ARGUMENT if provided model is invalid
118 * @return supportedOperations A list of supported operations, where true
119 * indicates the operation is supported and false indicates the
120 * operation is not supported. The index of "supported" corresponds with
121 * the index of the operation it is describing.
122 */
123 getSupportedOperations_1_2(Model model)
124 generates (ErrorStatus status, vec<bool> supportedOperations);
125
126 /**
Xusong Wangfc678052019-01-11 17:41:11 -0800127 * Gets whether the driver supports compilation caching.
128 *
129 * isCachingSupported indicates whether the driver supports compilation caching.
130 * Even if so, the driver may still choose not to cache certain compiled models.
131 *
132 * If the device reports the caching is not supported, the user may avoid calling
133 * IDevice::prepareModelFromCache and IPreparedModel::saveToCache.
134 *
135 * @return status Error status of the call, must be:
136 * - NONE if successful
137 * - DEVICE_UNAVAILABLE if driver is offline or busy
138 * - GENERAL_FAILURE if there is an unspecified error
139 * @return supported A boolean indicating whether the driver supports compilation
140 * caching. Even on returning true, the driver may still choose
141 * not to cache certain compiled models.
142 */
143 isCachingSupported() generates (ErrorStatus status, bool supported);
144
145 /**
Slava Shklyaev8e139a72018-09-07 15:27:24 +0100146 * Creates a prepared model for execution.
147 *
148 * prepareModel is used to make any necessary transformations or alternative
149 * representations to a model for execution, possibly including
150 * transformations on the constant data, optimization on the model's graph,
151 * or compilation into the device's native binary format. The model itself
152 * is not changed.
153 *
154 * The model is prepared asynchronously with respect to the caller. The
155 * prepareModel function must verify the inputs to the prepareModel function
156 * are correct. If there is an error, prepareModel must immediately invoke
157 * the callback with the appropriate ErrorStatus value and nullptr for the
158 * IPreparedModel, then return with the same ErrorStatus. If the inputs to
159 * the prepareModel function are valid and there is no error, prepareModel
160 * must launch an asynchronous task to prepare the model in the background,
161 * and immediately return from prepareModel with ErrorStatus::NONE. If the
162 * asynchronous task fails to launch, prepareModel must immediately invoke
163 * the callback with ErrorStatus::GENERAL_FAILURE and nullptr for the
164 * IPreparedModel, then return with ErrorStatus::GENERAL_FAILURE.
165 *
166 * When the asynchronous task has finished preparing the model, it must
167 * immediately invoke the callback function provided as an input to
168 * prepareModel. If the model was prepared successfully, the callback object
169 * must be invoked with an error status of ErrorStatus::NONE and the
170 * produced IPreparedModel object. If an error occurred preparing the model,
171 * the callback object must be invoked with the appropriate ErrorStatus
172 * value and nullptr for the IPreparedModel.
173 *
174 * The only information that may be unknown to the model at this stage is
175 * the shape of the tensors, which may only be known at execution time. As
176 * such, some driver services may return partially prepared models, where
177 * the prepared model may only be finished when it is paired with a set of
178 * inputs to the model. Note that the same prepared model object may be
179 * used with different shapes of inputs on different (possibly concurrent)
180 * executions.
181 *
182 * Multiple threads may call prepareModel on the same model concurrently.
183 *
184 * @param model The model to be prepared for execution.
185 * @param preference Indicates the intended execution behavior of a prepared
186 * model.
187 * @param callback A callback object used to return the error status of
188 * preparing the model for execution and the prepared model if
189 * successful, nullptr otherwise. The callback object's notify function
190 * must be called exactly once, even if the model could not be prepared.
191 * @return status Error status of launching a task which prepares the model
192 * in the background; must be:
193 * - NONE if preparation task is successfully launched
194 * - DEVICE_UNAVAILABLE if driver is offline or busy
195 * - GENERAL_FAILURE if there is an unspecified error
196 * - INVALID_ARGUMENT if one of the input arguments is invalid
197 */
198 prepareModel_1_2(Model model, ExecutionPreference preference,
199 IPreparedModelCallback callback)
200 generates (ErrorStatus status);
Xusong Wangfc678052019-01-11 17:41:11 -0800201
202 /**
203 * Creates a prepared model from cache files for execution.
204 *
205 * prepareModelFromCache is used to retrieve a prepared model directly from
206 * cache files to avoid slow model compilation time. There are exactly two
207 * cache file descriptors provided to the driver: modelCache and dataCache.
208 *
209 * The dataCache is for caching constant data, possibly including preprocessed
210 * and transformed tensor buffers. Any modification to the dataCache should
211 * have no worse effect than generating bad output values at execution time.
212 *
213 * The modelCache is for caching security-sensitive data such as compiled
214 * executable machine code in the device's native binary format. A modification
215 * to the modelCache may affect the driver's execution behavior, and a malicious
216 * client could make use of this to execute beyond the granted permission. Thus,
217 * the driver must always check whether the modelCache is corrupted before preparing
218 * the model from cache.
219 *
220 * The two file descriptors may be closed by the client once the asynchronous
221 * preparation has finished. The driver has to copy all the data it needs.
222 *
223 * The model is prepared asynchronously with respect to the caller. The
224 * prepareModelFromCache function must verify the inputs to the
225 * prepareModelFromCache function are correct, and that the security-sensitive
226 * cache has not been modified since it was last written by the driver.
227 * If there is an error, or if compilation caching is not supported, or if the
228 * security-sensitive cache has been modified, prepareModelFromCache must
229 * immediately invoke the callback with the appropriate ErrorStatus value and
230 * nullptr for the IPreparedModel, then return with the same ErrorStatus. If
231 * the inputs to the prepareModelFromCache function are valid, the security-sensitive
232 * cache is not modified, and there is no error, prepareModelFromCache must launch an
233 * asynchronous task to prepare the model in the background, and immediately return
234 * from prepareModelFromCache with ErrorStatus::NONE. If the asynchronous task
235 * fails to launch, prepareModelFromCache must immediately invoke the callback
236 * with ErrorStatus::GENERAL_FAILURE and nullptr for the IPreparedModel, then
237 * return with ErrorStatus::GENERAL_FAILURE.
238 *
239 * When the asynchronous task has finished preparing the model, it must
240 * immediately invoke the callback function provided as an input to
241 * prepareModelFromCache. If the model was prepared successfully, the
242 * callback object must be invoked with an error status of ErrorStatus::NONE
243 * and the produced IPreparedModel object. If an error occurred preparing
244 * the model, the callback object must be invoked with the appropriate
245 * ErrorStatus value and nullptr for the IPreparedModel.
246 *
247 * The only information that may be unknown to the model at this stage is
248 * the shape of the tensors, which may only be known at execution time. As
249 * such, some driver services may return partially prepared models, where
250 * the prepared model may only be finished when it is paired with a set of
251 * inputs to the model. Note that the same prepared model object may be
252 * used with different shapes of inputs on different (possibly concurrent)
253 * executions.
254 *
255 * @param modelCache A handle holding exactly one cache file descriptor for the
256 * security-sensitive cache.
257 * @param dataCache A handle holding exactly one cache file descriptor for the
258 * constants' cache.
259 * @param token A caching token of length Constant::BYTE_SIZE_OF_CACHE_TOKEN
260 * identifying the prepared model. It is the same token provided when saving
261 * the cache files with IPreparedModel::saveToCache. Tokens should be chosen
262 * to have a low rate of collision for a particular application. The driver
263 * cannot detect a collision; a collision will result in a failed execution
264 * or in a successful execution that produces incorrect output values.
265 * @param callback A callback object used to return the error status of
266 * preparing the model for execution and the prepared model if
267 * successful, nullptr otherwise. The callback object's notify function
268 * must be called exactly once, even if the model could not be prepared.
269 * @return status Error status of launching a task which prepares the model
270 * in the background; must be:
271 * - NONE if preparation task is successfully launched
272 * - DEVICE_UNAVAILABLE if driver is offline or busy
273 * - GENERAL_FAILURE if caching is not supported or if there is an
274 * unspecified error
275 * - INVALID_ARGUMENT if one of the input arguments is invalid
276 */
277 prepareModelFromCache(handle modelCache, handle dataCache,
278 uint8_t[Constant:BYTE_SIZE_OF_CACHE_TOKEN] token,
279 IPreparedModelCallback callback)
280 generates (ErrorStatus status);
Slava Shklyaev8e139a72018-09-07 15:27:24 +0100281};