ClickHouse/src/Functions/tanh.cpp

46 lines
872 B
C++
Raw Normal View History

2019-08-01 01:17:44 +00:00
#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
2020-09-07 18:00:37 +00:00
namespace
{
2019-08-01 01:17:44 +00:00
struct TanhName { static constexpr auto name = "tanh"; };
#if USE_FASTOPS
struct Impl
{
static constexpr auto name = TanhName::name;
static constexpr auto rows_per_iteration = 0;
static constexpr bool always_returns_float64 = false;
template <typename T>
static void execute(const T * src, size_t size, T * dst)
{
NFastOps::Tanh<>(src, size, dst);
}
};
using FunctionTanh = FunctionMathUnary<Impl>;
#else
2020-09-07 18:00:37 +00:00
double tanh(double x)
2019-08-01 01:17:44 +00:00
{
return 2 / (1.0 + exp(-2 * x)) - 1;
}
2019-08-01 03:06:15 +00:00
using FunctionTanh = FunctionMathUnary<UnaryFunctionVectorized<TanhName, tanh>>;
2019-08-01 01:17:44 +00:00
#endif
2020-09-07 18:00:37 +00:00
}
REGISTER_FUNCTION(Tanh)
2019-08-01 01:17:44 +00:00
{
2022-08-27 20:06:03 +00:00
factory.registerFunction<FunctionTanh>({}, FunctionFactory::CaseInsensitive);
2019-08-01 01:17:44 +00:00
}
}