ClickHouse/src/Functions/sigmoid.cpp

51 lines
915 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 SigmoidName { static constexpr auto name = "sigmoid"; };
#if USE_FASTOPS
namespace
{
struct Impl
{
static constexpr auto name = SigmoidName::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::Sigmoid<>(src, size, dst);
}
};
}
using FunctionSigmoid = FunctionMathUnary<Impl>;
#else
static double sigmoid(double x)
{
2019-08-02 18:59:19 +00:00
return 1.0 / (1.0 + exp(-x));
2019-08-01 01:17:44 +00:00
}
using FunctionSigmoid = FunctionMathUnary<UnaryFunctionVectorized<SigmoidName, sigmoid>>;
#endif
2020-09-07 18:00:37 +00:00
}
2019-08-01 01:17:44 +00:00
void registerFunctionSigmoid(FunctionFactory & factory)
{
factory.registerFunction<FunctionSigmoid>();
}
}