blob: f75388dc2b025861c00274c975dac867985a6137 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
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
10namespace armnn
11{
12
telsoa01c577f2c2018-08-31 09:22:23 +010013/// Computes the softmax function on some inputs, into outputs, with a shape given by tensorInfo.
telsoa014fcda012018-03-09 14:13:49 +000014void Softmax(const float* in, float* out, const TensorInfo& tensorInfo, float beta);
15
16} //namespace armnn