Skip to documentation
SLOP

tiny.simd.gatherIndexNOr

Reference tiny.simd gatherIndexNOr

Defined in indexed.

Called byCallsindexedgatherIndexNindexedmaskedGatherIndexOrindexedgatherIndexNOr
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/indexed.zig:86

zig
pub fn gatherIndexNOr(    comptime D: type,    inactive: D.Vector,    base: []const D.Lane,    indices: anytype,    count: usize,) D.Vector {    const lanes = @min(count, D.lane_count);    var mask: D.Mask = @splat(false);    inline for (0..D.lane_count) |index| mask[index] = index < lanes;    return maskedGatherIndexOr(D, inactive, mask, base, indices);}

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

zig
pub const gatherIndexNOr = indexed.gatherIndexNOr;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433