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