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

#include "BaseIterator.hpp"
#include <armnn/Tensor.hpp>
#include <armnn/Types.hpp>

namespace armnn
{

/// Performs the reciprocal squareroot function elementwise
/// on the inputs to give the outputs.
void Rsqrt(Decoder<float>& in,
           Encoder<float>& out,
           const TensorInfo& tensorInfo);

} //namespace armnn