Home
last modified time | relevance | path

Searched refs:prepareModel (Results 1 – 12 of 12) sorted by relevance

/hardware/interfaces/neuralnetworks/1.0/
DIDevice.hal63 * prepareModel is used to make any necessary transformations or alternative
70 * prepareModel function must verify the inputs to the prepareModel function
71 * are correct. If there is an error, prepareModel must immediately invoke
74 * the prepareModel function are valid and there is no error, prepareModel
76 * and immediately return from prepareModel with ErrorStatus::NONE. If the
77 * asynchronous task fails to launch, prepareModel must immediately invoke
83 * prepareModel. If the model was prepared successfully, the callback object
97 * Multiple threads can call prepareModel on the same model concurrently.
113 prepareModel(Model model, IPreparedModelCallback callback)
DIPreparedModelCallback.hal23 * asynchronous task launched from IDevice::prepareModel.
35 * IDevice::prepareModel is invalid, notify must be invoked with the
46 * prepareModel is invalid
DIExecutionCallback.hal41 * prepareModel is invalid
/hardware/interfaces/neuralnetworks/1.1/
DIDevice.hal68 * prepareModel is used to make any necessary transformations or alternative
75 * prepareModel function must verify the inputs to the prepareModel function
76 * are correct. If there is an error, prepareModel must immediately invoke
79 * the prepareModel function are valid and there is no error, prepareModel
81 * and immediately return from prepareModel with ErrorStatus::NONE. If the
82 * asynchronous task fails to launch, prepareModel must immediately invoke
88 * prepareModel. If the model was prepared successfully, the callback object
102 * Multiple threads can call prepareModel on the same model concurrently.
/hardware/interfaces/neuralnetworks/1.2/
DIPreparedModelCallback.hal25 * asynchronous task launched from IDevice::prepareModel.
37 * IDevice::prepareModel is invalid, either notify_1_2 or notify must be invoked
48 * prepareModel is invalid
DIDevice.hal171 * prepareModel is used to make any necessary transformations to or alternative
192 * prepareModel function must verify the inputs to the preparedModel function
194 * cache) are correct. If there is an error, prepareModel must immediately invoke
197 * prepareModel function that are related to preparing the model are valid and
198 * there is no error, prepareModel must launch an asynchronous task
200 * prepareModel with ErrorStatus::NONE. If the asynchronous task fails to launch,
201 * prepareModel must immediately invoke the callback with
207 * prepareModel. If the model was prepared successfully, the callback object
217 * the prepareModel function must finish preparing the model. The driver
229 * Multiple threads may call prepareModel on the same model concurrently.
DIExecutionCallback.hal46 * prepareModel is invalid
/hardware/qcom/neuralnetworks/hvxservice/1.0/
DDevice.h49 Return<ErrorStatus> prepareModel(const Model& model,
DDevice.cpp104 Return<ErrorStatus> Device::prepareModel(const Model& model, in prepareModel() function in android::hardware::neuralnetworks::V1_0::implementation::Device
/hardware/interfaces/neuralnetworks/1.0/vts/functional/
DVtsHalNeuralnetworks.cpp52 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in createPreparedModel()
DValidateModel.cpp52 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in validatePrepareModel()
DGeneratedTestHarness.cpp451 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in Execute()