blob: 97df19d3c656a8cda8e93fad3885dceef14d8354 [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 : public std::binary_function<T, T, T>
{
T
operator () (const T& inputData0, const T& inputData1) const
{
return std::max(inputData0, inputData1);
}
};
} //namespace armnn