Skip to documentation
SLOP

tiny.simd.combine

Reference tiny.simd combine

Defined in lanes.

Called byCallslanesconcatLowerLowerlanesconcatLowerUpperlanesconcatUpperLowerlanesconcatUpperUppertest sourcelib.simd.src.lanestest: Highway vector halves combine a...private sourcelib.simd.src.lanesverifyLaneTypeprivate sourcelib.simd.src.lanesvalidatelanescombine
Static calls · unresolved targets: 1 · external targets: 0.

Source

Source: lib/simd/src/lanes.zig:29

zig
pub fn combine(    comptime D: type,    high: D.half().Vector,    low: D.half().Vector,) D.Vector {    validate(D);    var result: D.Vector = undefined;    inline for (0..D.lane_count / 2) |index| {        result[index] = low[index];        result[D.lane_count / 2 + index] = high[index];    }    return result;}

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

zig
pub const combine = lanes.combine;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433