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