ArmNN
 21.02
RefSoftmaxWorkload.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "RefSoftmaxWorkload.hpp"
7 
8 #include "Decoders.hpp"
9 #include "Encoders.hpp"
10 #include "RefWorkloadUtils.hpp"
11 #include "Softmax.hpp"
12 
13 #include "Profiling.hpp"
14 
15 #include <vector>
16 
17 namespace armnn
18 {
19 
21 {
22  ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefSoftmaxWorkload_Execute");
23 
24  const TensorInfo &inputTensorInfo = GetTensorInfo(m_Data.m_Inputs[0]);
25 
26  std::unique_ptr<Decoder<float>> decoderPtr = MakeDecoder<float>(inputTensorInfo, m_Data.m_Inputs[0]->Map());
27  Decoder<float> &decoder = *decoderPtr;
28 
29  const TensorInfo &outputTensorInfo = GetTensorInfo(m_Data.m_Outputs[0]);
30 
31  std::unique_ptr<Encoder<float>> encoderPtr = MakeEncoder<float>(outputTensorInfo, m_Data.m_Outputs[0]->Map());
32  Encoder<float> &encoder = *encoderPtr;
33 
34  Softmax(decoder,
35  encoder,
36  inputTensorInfo,
39 }
40 } //namespace armnn
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
CPU Execution: Reference C++ kernels.
const SoftmaxQueueDescriptor m_Data
Definition: Workload.hpp:46
float m_Beta
Exponentiation value.
Copyright (c) 2021 ARM Limited and Contributors.
#define ARMNN_SCOPED_PROFILING_EVENT(backendId, name)
Definition: Profiling.hpp:173
std::vector< ITensorHandle * > m_Outputs
std::vector< ITensorHandle * > m_Inputs
const TensorInfo & GetTensorInfo(const ITensorHandle *tensorHandle)
float32 helpers
virtual void Execute() const override