Skip to documentation
SLOP

tiny.simd.storeInterleaved3

Reference tiny.simd storeInterleaved3

Defined in memory.

Called byCallsNo direct callstest sourcelib.simd.src.memorytest: Highway two three and four chan...memorystoreInterleaved3
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/memory.zig:197

zig
pub fn storeInterleaved3(    comptime D: type,    a: D.Vector,    b: D.Vector,    c: D.Vector,    output: []D.Lane,) void {    std.debug.assert(output.len >= D.lane_count * 3);    const values = [3]D.Vector{ a, b, c };    inline for (0..D.lane_count) |lane_index| {        inline for (0..3) |vector_index| {            output[lane_index * 3 + vector_index] = values[vector_index][lane_index];        }    }}

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

zig
pub const storeInterleaved3 = memory.storeInterleaved3;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433