Home
last modified time | relevance | path

Searched refs:prepareModel (Results 1 – 9 of 9) 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/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/
DValidateRequest.cpp63 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in createPreparedModel()
DGeneratedTestHarness.cpp201 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in Execute()
DValidateModel.cpp52 Return<ErrorStatus> prepareLaunchStatus = device->prepareModel(model, preparedModelCallback); in validatePrepareModel()