Skip to documentation
SLOP

tiny.simd.maskedWidenMulPairwiseAdd

Reference tiny.simd maskedWidenMulPairwiseAdd

Defined in multiply.

Called byCallsNo direct callersmultiplywidenMulPairwiseAddmultiplymaskedWidenMulPairwiseAdd
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/multiply.zig:92

zig
pub fn maskedWidenMulPairwiseAdd(    comptime DW: type,    mask: DW.Mask,    a: anytype,    b: @TypeOf(a),) DW.Vector {    return @select(        DW.Lane,        mask,        widenMulPairwiseAdd(DW, a, b),        @as(DW.Vector, @splat(0)),    );}

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

zig
pub const maskedWidenMulPairwiseAdd = multiply.maskedWidenMulPairwiseAdd;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433