From b5fdf38f0c6596958fab2b84882f2792a31e585a Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Tue, 11 Jun 2019 16:35:25 +0100 Subject: IVGCVSW-3181 Add HAL 1.2 support to android-nn-driver * Updated Android.mk to build HAL 1.2 driver * Added 1.2 HalPolicy and ArmnnDriver * Added 1.2 ArmnnPreparedModel * Updated converters and utilities to accept new HAL 1.2 operands and operand types. Signed-off-by: Sadik Armagan Signed-off-by: Mike Kelly Change-Id: I62856deab24e106f72cccce09468db4971756fa6 --- ArmnnPreparedModel_1_2.hpp | 80 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 ArmnnPreparedModel_1_2.hpp (limited to 'ArmnnPreparedModel_1_2.hpp') diff --git a/ArmnnPreparedModel_1_2.hpp b/ArmnnPreparedModel_1_2.hpp new file mode 100644 index 00000000..4e883b6b --- /dev/null +++ b/ArmnnPreparedModel_1_2.hpp @@ -0,0 +1,80 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +#include "ArmnnDriver.hpp" +#include "ArmnnDriverImpl.hpp" +#include "RequestThread.hpp" +#include "ModelToINetworkConverter.hpp" + +#include +#include + +#include +#include + +namespace armnn_driver +{ + +template +class ArmnnPreparedModel_1_2 : public V1_2::IPreparedModel +{ +public: + using HalModel = typename V1_2::Model; + + ArmnnPreparedModel_1_2(armnn::NetworkId networkId, + armnn::IRuntime* runtime, + const HalModel& model, + const std::string& requestInputsAndOutputsDumpDir, + const bool gpuProfilingEnabled); + + virtual ~ArmnnPreparedModel_1_2(); + + virtual Return execute(const Request& request, + const ::android::sp& callback) override; + + virtual Return execute_1_2(const Request& request, MeasureTiming measure, + const sp& callback) override; + + virtual Return executeSynchronously(const Request &request, + MeasureTiming measure, + V1_2::IPreparedModel::executeSynchronously_cb cb) override; + + virtual Return configureExecutionBurst( + const sp& callback, + const android::hardware::MQDescriptorSync& requestChannel, + const android::hardware::MQDescriptorSync& resultChannel, + configureExecutionBurst_cb cb) override; + + /// execute the graph prepared from the request + void ExecuteGraph(std::shared_ptr>& pMemPools, + std::shared_ptr& pInputTensors, + std::shared_ptr& pOutputTensors, + const ::android::sp& callback); + + /// Executes this model with dummy inputs (e.g. all zeroes). + /// \return false on failure, otherwise true + bool ExecuteWithDummyInputs(); + +private: + template + Return Execute(const Request &request, const sp &callback); + + template + void DumpTensorsIfRequired(char const* tensorNamePrefix, const TensorBindingCollection& tensorBindings); + + armnn::NetworkId m_NetworkId; + armnn::IRuntime* m_Runtime; + V1_2::Model m_Model; + // There must be a single RequestThread for all ArmnnPreparedModel objects to ensure serial execution of workloads + // It is specific to this class, so it is declared as static here + static RequestThread m_RequestThread; + uint32_t m_RequestCount; + const std::string& m_RequestInputsAndOutputsDumpDir; + const bool m_GpuProfilingEnabled; +}; + +} -- cgit v1.2.1