blob: fcb4cc4c301564cfc1f5a2c6f6504ec5ad3724fc [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
telsoa014fcda012018-03-09 14:13:49 +00002// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
nikraj01a121de32019-05-29 10:51:05 +01008#include "BaseIterator.hpp"
telsoa014fcda012018-03-09 14:13:49 +00009#include <armnn/Tensor.hpp>
10
11namespace armnn
12{
13
telsoa01c577f2c2018-08-31 09:22:23 +010014/// Computes the softmax function on some inputs, into outputs, with a shape given by tensorInfo.
Francis Murtagh07f21212019-07-23 09:50:50 +010015void Softmax(Decoder<float>& in, Encoder<float>& out, const TensorInfo& inputTensorInfo, float beta, int axis = -1);
telsoa014fcda012018-03-09 14:13:49 +000016
17} //namespace armnn