// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include namespace armnn { template struct sin : public std::unary_function { T operator () (const T& inputData) const { return std::sin(inputData); } }; } //namespace armnn