From ce3e84a8d449cbf31cee57e30f0eef6a96c0ce94 Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:31:35 +0100 Subject: Release 18.08 --- ArmnnDevice.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ArmnnDevice.hpp (limited to 'ArmnnDevice.hpp') diff --git a/ArmnnDevice.hpp b/ArmnnDevice.hpp new file mode 100644 index 00000000..83414d54 --- /dev/null +++ b/ArmnnDevice.hpp @@ -0,0 +1,27 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// + +#pragma once + +#include "DriverOptions.hpp" + +#include + +namespace armnn_driver +{ + +class ArmnnDevice +{ +protected: + ArmnnDevice(DriverOptions options); + virtual ~ArmnnDevice() {} + +protected: + armnn::IRuntimePtr m_Runtime; + armnn::IGpuAccTunedParametersPtr m_ClTunedParameters; + DriverOptions m_Options; +}; + +} // namespace armnn_driver -- cgit v1.2.1