blob: ca4b480b5131d68c99d1c1ede43370a2f8b22f6d [file] [log] [blame]
//
// 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