blob: b1165d2d93d0ec71b6abde4b0d25c94df4e20523 [file] [log] [blame]
Sadik Armagan9199e582019-09-05 17:35:31 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "BaseIterator.hpp"
7#include <armnn/Tensor.hpp>
8#include <armnn/Types.hpp>
9
10namespace armnn
11{
12
13/// Performs the absolute function elementwise
14/// on the inputs to give the outputs.
15void Abs(Decoder<float>& in,
16 Encoder<float>& out,
17 const TensorInfo& tensorInfo);
18
19} //namespace armnn