mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
51 lines
879 B
C++
51 lines
879 B
C++
#include <Functions/FunctionMathUnary.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
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
|
|
|
|
double sigmoid(double x)
|
|
{
|
|
return 1.0 / (1.0 + exp(-x));
|
|
}
|
|
|
|
using FunctionSigmoid = FunctionMathUnary<UnaryFunctionVectorized<SigmoidName, sigmoid>>;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(Sigmoid)
|
|
{
|
|
factory.registerFunction<FunctionSigmoid>();
|
|
}
|
|
|
|
}
|
|
|