aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/Abs.hpp
blob: 60616671ec189a77237c2cb854975a016c7fcbe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <iostream>

namespace armnn
{
template<typename T>
struct abs
    {
        typedef T result_type;
        typedef T argument_type;

        T
        operator () (const T&  inputData) const
        {
            return std::abs(inputData);
        }
    };

} //namespace armnn