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.