Module functions_3

Module functions_3 

Source
Expand description

Auto-generated module

🤖 Generated with SplitRS

Functions§

cbrt_simd
Compute the cube root of each element (SIMD-accelerated).
clamp_simd
Clamp each element to a specified range [min, max] (SIMD-accelerated).
digamma_simd
Computes the element-wise digamma function ψ(x) = d/dx ln(Γ(x)) using SIMD acceleration.
erf_simd
Element-wise error function erf(x) = (2/√π) ∫₀ˣ e^(-t²) dt
erfc_simd
Element-wise complementary error function erfc(x) = 1 - erf(x)
erfcinv_simd
Element-wise inverse complementary error function erfcinv(y) = x such that erfc(x) = y
erfinv_simd
Element-wise inverse error function erfinv(y) = x such that erf(x) = y
exp2_simd
Compute 2^x for each element (SIMD-accelerated).
exp_m1_simd
Compute exp(x)-1 for each element (SIMD-accelerated, numerically stable).
gelu_simd
Compute the element-wise GELU (Gaussian Error Linear Unit) of an array.
ln_1p_simd
Compute ln(1+x) for each element (SIMD-accelerated, numerically stable).
ln_gamma_simd
Computes the element-wise log-gamma function ln(Γ(x)) using SIMD acceleration.
log2_simd
Compute the base-2 logarithm of each element (SIMD-accelerated).
mish_simd
SIMD-accelerated Mish activation function
sigmoid_simd
Compute the element-wise sigmoid (logistic) function of an array.
softplus_simd
SIMD-accelerated Softplus activation function
swish_simd
SIMD-accelerated Swish (SiLU - Sigmoid Linear Unit) activation function
to_degrees_simd
Convert radians to degrees for each element (SIMD-accelerated).
to_radians_simd
Convert degrees to radians for each element (SIMD-accelerated).
trigamma_simd
Computes the element-wise trigamma function ψ’(x) = d²/dx² ln(Γ(x)) using SIMD acceleration.