tiny.simd.erf
Defined in math.
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
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |