aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/Softmax.hpp
blob: 3b974f9e9efe6f69f8d072aafda255df1d89822c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/Tensor.hpp>

namespace armnn
{

/// Computes the softmax function on some inputs, into outputs, with a shape given by tensorInfo.
void Softmax(const float* in, float* out, const TensorInfo& tensorInfo, float beta);

} //namespace armnn