From 0dbe0ee25312b728d77383d11c465156e64ae757 Mon Sep 17 00:00:00 2001 From: David Beck Date: Mon, 24 Sep 2018 15:59:27 +0100 Subject: IVGCVSW-1899 : Neon backend folder structure armnn:149855 Change-Id: I26e8cf83422a65049386a5ebdb6d0001627aefaa --- .../NeonDepthwiseConvolutionUint8Workload.hpp | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/backends/neon/workloads/NeonDepthwiseConvolutionUint8Workload.hpp (limited to 'src/backends/neon/workloads/NeonDepthwiseConvolutionUint8Workload.hpp') diff --git a/src/backends/neon/workloads/NeonDepthwiseConvolutionUint8Workload.hpp b/src/backends/neon/workloads/NeonDepthwiseConvolutionUint8Workload.hpp new file mode 100644 index 0000000000..90cf8b0091 --- /dev/null +++ b/src/backends/neon/workloads/NeonDepthwiseConvolutionUint8Workload.hpp @@ -0,0 +1,29 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +#include + +namespace armnn +{ + +class NeonDepthwiseConvolutionUint8Workload : public Uint8Workload +{ +public: + NeonDepthwiseConvolutionUint8Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor, + const WorkloadInfo& info); + virtual void Execute() const override; + +private: + mutable std::unique_ptr m_pDepthwiseConvolutionLayer; + + std::unique_ptr m_KernelTensor; + std::unique_ptr m_BiasTensor; + + void FreeUnusedTensors(); +}; + +} //namespace armnn -- cgit v1.2.1