mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
47 lines
900 B
C++
47 lines
900 B
C++
#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)
|
|
{
|
|
return 1.0 / (1.0 + exp(-x));
|
|
}
|
|
|
|
using FunctionSigmoid = FunctionMathUnary<UnaryFunctionVectorized<SigmoidName, sigmoid>>;
|
|
|
|
#endif
|
|
|
|
void registerFunctionSigmoid(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionSigmoid>();
|
|
}
|
|
|
|
}
|
|
|