blob: 8ff78b4e8a109c1eaab3079fa131f9fe15feaa84 [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
{
typedef T result_type;
typedef T argument_type;
T
operator () (const T& inputData) const
{
return std::sin(inputData);
}
};
} //namespace armnn