blob: b71c33bbf3f96514cf2d5c9071dec478488b448f [file] [log] [blame]
//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <iostream>
namespace armnn
{
template<typename T>
struct sin : public std::unary_function<T, T>
{
T
operator () (const T& inputData) const
{
return std::sin(inputData);
}
};
} //namespace armnn