Skip to documentation
SLOP

tiny.simd.erf

Reference tiny.simd erf

Defined in math.

Called byCallstest sourcelib.simd.src.mathtest: Highway contributed logarithmic...test sourcelib.simd.src.mathtest: Highway contributed roots error...private sourcelib.simd.src.matherfScalarprivate sourcelib.simd.src.mathrequireFloatmatherf
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/math.zig:73

zig
pub fn erf(comptime D: type, value: D.Vector) D.Vector {    requireFloat(D.Lane);    var result: D.Vector = undefined;    inline for (0..D.lane_count) |index| result[index] = erfScalar(D.Lane, value[index]);    return result;}

Source: lib/simd/src/root.zig:415

zig
pub const erf = math.erf;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433