aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp
diff options
context:
space:
mode:
authornikraj01 <nikhil.raj@arm.com>2019-05-29 10:51:05 +0100
committernikraj01 <nikhil.raj@arm.com>2019-05-29 10:51:05 +0100
commita121de3edee75180d335d8be42cdd6620a6063a5 (patch)
treedc766736db9eedad905f4f2e566a5d0e476d6240 /src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp
parente242f2dc646f41e9162aaaf74e057ce39fcb92df (diff)
downloadarmnn-a121de3edee75180d335d8be42cdd6620a6063a5.tar.gz
IVGCVSW-3168 Refactor reference softmax workload into a single workload
Change-Id: Ie290efcbb9e3a6365cbd630cb2041e7b0f542505 Signed-off-by: nikraj01 <nikhil.raj@arm.com>
Diffstat (limited to 'src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp')
-rw-r--r--src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp b/src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp
deleted file mode 100644
index 17114ec83a..0000000000
--- a/src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "RefSoftmaxUint8Workload.hpp"
-
-#include "RefWorkloadUtils.hpp"
-#include "Softmax.hpp"
-
-#include "Profiling.hpp"
-
-#include <vector>
-
-namespace armnn
-{
-
-void RefSoftmaxUint8Workload::Execute() const
-{
- ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefSoftmaxUint8Workload_Execute");
-
- const TensorInfo& tensorInfo = GetTensorInfo(m_Data.m_Inputs[0]);
-
- auto dequant = Dequantize(GetInputTensorDataU8(0, m_Data), tensorInfo);
-
- std::vector<float> results(tensorInfo.GetNumElements());
-
- Softmax(dequant.data(),
- results.data(),
- tensorInfo,
- m_Data.m_Parameters.m_Beta);
-
- Quantize(GetOutputTensorDataU8(0, m_Data), results.data(), GetTensorInfo(m_Data.m_Outputs[0]));
-}
-
-} //namespace armnn