Skip to documentation
SLOP

tiny.simd.mulAdd

Reference tiny.simd mulAdd

Defined in arithmetic.

Called byCallsarithmeticmaskedMulAddarithmeticmaskedMulAddOrarithmeticmulAddSubarithmeticmulSubAdddotcomputeF32BFloatAssume+2 morearithmeticaddprivate sourcelib.simd.src.arithmeticisIntegerarithmeticmularithmeticmulAdd
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/arithmetic.zig:190

zig
pub fn mulAdd(    comptime D: type,    multiplicand: D.Vector,    multiplier: D.Vector,    addend: D.Vector,) D.Vector {    if (comptime isInteger(D.Lane)) {        return add(D, mul(D, multiplicand, multiplier), addend);    }    return @mulAdd(D.Vector, multiplicand, multiplier, addend);}

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

zig
pub const mulAdd = arithmetic.mulAdd;

Complete caller list

7 direct callers.

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433