From ce3e84a8d449cbf31cee57e30f0eef6a96c0ce94 Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:31:35 +0100 Subject: Release 18.08 --- 1.1/ArmnnDriver.hpp | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 1.1/ArmnnDriver.hpp (limited to '1.1/ArmnnDriver.hpp') diff --git a/1.1/ArmnnDriver.hpp b/1.1/ArmnnDriver.hpp new file mode 100644 index 00000000..6bd8e03c --- /dev/null +++ b/1.1/ArmnnDriver.hpp @@ -0,0 +1,103 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// + +#pragma once + +#include + +#include "ArmnnDevice.hpp" +#include "1.0/ArmnnDriverImpl.hpp" +#include "1.1/ArmnnDriverImpl.hpp" + +#include + +namespace armnn_driver { +namespace V1_1 { + +class ArmnnDriver : public ArmnnDevice, public ::android::hardware::neuralnetworks::V1_1::IDevice +{ +public: + ArmnnDriver(DriverOptions options) + : ArmnnDevice(std::move(options)) + { + ALOGV("V1_1::ArmnnDriver::ArmnnDriver()"); + } + ~ArmnnDriver() {} + +public: + Return getCapabilities( + ::android::hardware::neuralnetworks::V1_0::IDevice::getCapabilities_cb cb) + { + ALOGV("V1_1::ArmnnDriver::getCapabilities()"); + + return V1_0::ArmnnDriverImpl::getCapabilities(m_Runtime, cb); + } + + Return getSupportedOperations( + const ::android::hardware::neuralnetworks::V1_0::Model& model, + ::android::hardware::neuralnetworks::V1_0::IDevice::getSupportedOperations_cb cb) + { + ALOGV("V1_1::ArmnnDriver::getSupportedOperations()"); + + return V1_0::ArmnnDriverImpl::getSupportedOperations(m_Runtime, m_Options, model, cb); + } + + Return prepareModel( + const ::android::hardware::neuralnetworks::V1_0::Model& model, + const android::sp& cb) + { + ALOGV("V1_1::ArmnnDriver::prepareModel()"); + + return V1_0::ArmnnDriverImpl::prepareModel(m_Runtime, m_ClTunedParameters, m_Options, model, cb); + } + + Return getCapabilities_1_1( + ::android::hardware::neuralnetworks::V1_1::IDevice::getCapabilities_1_1_cb cb) + { + ALOGV("V1_1::ArmnnDriver::getCapabilities_1_1()"); + + return V1_1::ArmnnDriverImpl::getCapabilities_1_1(m_Runtime, cb); + } + + Return getSupportedOperations_1_1( + const ::android::hardware::neuralnetworks::V1_1::Model& model, + ::android::hardware::neuralnetworks::V1_1::IDevice::getSupportedOperations_1_1_cb cb) + { + ALOGV("V1_1::ArmnnDriver::getSupportedOperations_1_1()"); + + return V1_1::ArmnnDriverImpl::getSupportedOperations_1_1(m_Runtime, m_Options, model, cb); + } + + Return prepareModel_1_1( + const ::android::hardware::neuralnetworks::V1_1::Model& model, + ::android::hardware::neuralnetworks::V1_1::ExecutionPreference preference, + const android::sp& cb) + { + using namespace ::android::hardware::neuralnetworks::V1_0; + + ALOGV("V1_1::ArmnnDriver::prepareModel_1_1()"); + + if(!(preference == ExecutionPreference::LOW_POWER || + preference == ExecutionPreference::FAST_SINGLE_ANSWER || + preference == ExecutionPreference::SUSTAINED_SPEED)) + { + ALOGV("V1_1::ArmnnDriver::prepareModel_1_1(): Invalid execution preference"); + cb->notify(ErrorStatus::INVALID_ARGUMENT, nullptr); + return ErrorStatus::INVALID_ARGUMENT; + } + + return V1_1::ArmnnDriverImpl::prepareModel_1_1(m_Runtime, m_ClTunedParameters, m_Options, model, cb); + } + + Return getStatus() + { + ALOGV("V1_1::ArmnnDriver::getStatus()"); + + return V1_0::ArmnnDriverImpl::getStatus(); + } +}; + +} // armnn_driver::namespace V1_1 +} // namespace armnn_driver -- cgit v1.2.1