diff options
Diffstat (limited to 'neuralnetworks/1.2/IDevice.hal')
-rw-r--r-- | neuralnetworks/1.2/IDevice.hal | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/neuralnetworks/1.2/IDevice.hal b/neuralnetworks/1.2/IDevice.hal index d83f9e6758..ff20c12867 100644 --- a/neuralnetworks/1.2/IDevice.hal +++ b/neuralnetworks/1.2/IDevice.hal @@ -64,14 +64,14 @@ interface IDevice extends @1.1::IDevice { * results, the developer could choose an ACCELERATOR type device for ML * workloads, and reserve GPU for graphical rendering. * - * @param status Error status returned from querying the device type. Must be: - * - NONE if the query was successful - * - DEVICE_UNAVAILABLE if driver is offline or busy - * - GENERAL_FAILURE if the query resulted in an - * unspecified error - * @param type The DeviceType of the device. Please note, this is not a - * bitfield of DeviceTypes. Each device must only be of a - * single DeviceType. + * @return status Error status returned from querying the device type. Must be: + * - NONE if the query was successful + * - DEVICE_UNAVAILABLE if driver is offline or busy + * - GENERAL_FAILURE if the query resulted in an + * unspecified error + * @return type The DeviceType of the device. Please note, this is not a + * bitfield of DeviceTypes. Each device must only be of a + * single DeviceType. */ getType() generates (ErrorStatus status, DeviceType type); |