aboutsummaryrefslogtreecommitdiff
path: root/src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp
diff options
context:
space:
mode:
authorKeith Davis <keith.davis@arm.com>2020-07-02 11:49:26 +0100
committerTeresa Charlin <teresa.charlinreyes@arm.com>2020-07-24 11:16:06 +0100
commit69e653f9b2a7c8a2ab0cd3556b246a9df21b81d6 (patch)
tree1866252e0c459ee9f1564ea1d0feceb7f882ad14 /src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp
parent686f45c6641e87b6bc50c6274d0430c01a8b2bcf (diff)
downloadarmnn-69e653f9b2a7c8a2ab0cd3556b246a9df21b81d6.tar.gz
IVGCVSW-3897 Add NEON LOG_SOFTMAX Workload
Signed-off-by: Keith Davis <keith.davis@arm.com> Change-Id: I632b5ac7f188853de68e232e81568b3fca238d42
Diffstat (limited to 'src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp')
-rw-r--r--src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp b/src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp
new file mode 100644
index 0000000000..dbfa28dd11
--- /dev/null
+++ b/src/backends/neon/workloads/NeonLogSoftmaxWorkload.hpp
@@ -0,0 +1,36 @@
+//
+// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include <armnn/Descriptors.hpp>
+#include <backendsCommon/Workload.hpp>
+
+#include <arm_compute/core/Error.h>
+#include <arm_compute/runtime/IFunction.h>
+#include <arm_compute/runtime/MemoryManagerOnDemand.h>
+
+#include <memory>
+
+namespace armnn
+{
+
+arm_compute::Status NeonLogSoftmaxWorkloadValidate(const TensorInfo& input,
+ const TensorInfo& output,
+ const LogSoftmaxDescriptor& descriptor);
+
+class NeonLogSoftmaxWorkload : public BaseWorkload<LogSoftmaxQueueDescriptor>
+{
+public:
+ NeonLogSoftmaxWorkload(const LogSoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info,
+ std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager);
+ virtual void Execute() const override;
+
+private:
+ std::unique_ptr<arm_compute::IFunction> m_LogSoftmaxLayer;
+};
+
+} //namespace armnn
+