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 --- .../neon/workloads/NeonSoftmaxUint8Workload.hpp | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/backends/neon/workloads/NeonSoftmaxUint8Workload.hpp (limited to 'src/backends/neon/workloads/NeonSoftmaxUint8Workload.hpp') diff --git a/src/backends/neon/workloads/NeonSoftmaxUint8Workload.hpp b/src/backends/neon/workloads/NeonSoftmaxUint8Workload.hpp new file mode 100644 index 0000000000..0d72514ec0 --- /dev/null +++ b/src/backends/neon/workloads/NeonSoftmaxUint8Workload.hpp @@ -0,0 +1,26 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +#include +#include + +namespace armnn +{ + +class NeonSoftmaxUint8Workload : public Uint8Workload +{ +public: + NeonSoftmaxUint8Workload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info, + std::shared_ptr& memoryManager); + virtual void Execute() const override; + +private: + mutable arm_compute::NESoftmaxLayer m_SoftmaxLayer; +}; + +} //namespace armnn + -- cgit v1.2.1