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