aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/Maximum.hpp
blob: ca4b480b5131d68c99d1c1ede43370a2f8b22f6d (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 © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <iostream>

namespace armnn
{
template<typename T>
struct maximum
    {
        typedef T result_type;
        typedef T first_argument_type;

        T
        operator () (const T&  inputData0, const T&  inputData1) const
        {
            return std::max(inputData0, inputData1);
        }
    };

} //namespace armnn