Release 18.08
[platform/upstream/armnn.git] / src / armnn / backends / RefWorkloads / Softmax.hpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // See LICENSE file in the project root for full license information.
4 //
5
6 #pragma once
7
8 #include <armnn/Tensor.hpp>
9
10 namespace armnn
11 {
12
13 /// Computes the softmax function on some inputs, into outputs, with a shape given by tensorInfo.
14 void Softmax(const float* in, float* out, const TensorInfo& tensorInfo, float beta);
15
16 } //namespace armnn