2019-08-01 01:17:44 +00:00
|
|
|
#include <Functions/FunctionMathUnary.h>
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
void registerFunctionSigmoid(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionSigmoid>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|