blob: 3876293957c471a6a901f97f4226cdc863187729 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// 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.
nikraj01a121de32019-05-29 10:51:05 +010015void Softmax(Decoder<float>& in, Encoder<float>& out, const TensorInfo& inputTensorInfo, float beta);
telsoa014fcda012018-03-09 14:13:49 +000016
17} //namespace armnn