blob: ffc6b18d13f3861df8ab3ebd37f46db74569e499 [file] [log] [blame]
Mohamed Nour Abouelseouda1d3c6a2018-12-27 12:39:16 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
nikraj0199a66312019-06-06 10:31:27 +01006#include "BaseIterator.hpp"
Mohamed Nour Abouelseouda1d3c6a2018-12-27 12:39:16 +00007#include <armnn/Tensor.hpp>
8#include <armnn/Types.hpp>
9
10namespace armnn
11{
12
13/// Performs the reciprocal squareroot function elementwise
14/// on the inputs to give the outputs.
nikraj0199a66312019-06-06 10:31:27 +010015void Rsqrt(Decoder<float>& in,
16 Encoder<float>& out,
Mohamed Nour Abouelseouda1d3c6a2018-12-27 12:39:16 +000017 const TensorInfo& tensorInfo);
18
19} //namespace armnn