aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefSoftmaxUint8Workload.cpp
blob: 17114ec83aa25128d03883ab058b4057398cc770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// 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