aboutsummaryrefslogtreecommitdiff
path: root/ArmnnDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ArmnnDriver.hpp')
-rw-r--r--ArmnnDriver.hpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/ArmnnDriver.hpp b/ArmnnDriver.hpp
index 8b66e774..e8dc3bfb 100644
--- a/ArmnnDriver.hpp
+++ b/ArmnnDriver.hpp
@@ -13,6 +13,10 @@
#include <set>
#include <string>
+// For Android O, explicitly declare the V1_0 HAL namespace to shorten type declarations,
+// as the namespace is not defined in HalInterfaces.h.
+namespace V1_0 = ::android::hardware::neuralnetworks::V1_0;
+
namespace armnn_driver
{
@@ -41,14 +45,14 @@ private:
armnn::IClTunedParameters::Mode m_ClTunedParametersMode;
};
-class ArmnnDriver : public IDevice {
+class ArmnnDriver : public V1_0::IDevice {
public:
ArmnnDriver(DriverOptions options);
virtual ~ArmnnDriver() {}
- virtual Return<void> getCapabilities(getCapabilities_cb _hidl_cb) override;
- virtual Return<void> getSupportedOperations(const Model &model,
- getSupportedOperations_cb _hidl_cb) override;
- virtual Return<ErrorStatus> prepareModel(const Model &model,
+ virtual Return<void> getCapabilities(V1_0::IDevice::getCapabilities_cb _hidl_cb) override;
+ virtual Return<void> getSupportedOperations(const V1_0::Model &model,
+ V1_0::IDevice::getSupportedOperations_cb _hidl_cb) override;
+ virtual Return<ErrorStatus> prepareModel(const V1_0::Model &model,
const android::sp<IPreparedModelCallback>& callback);
virtual Return<DeviceStatus> getStatus() override;