blob: 7d64f7ba4cd5d6ff174090ffd8a12211ccd50b26 [file] [log] [blame]
@group(0) @binding(0)
var<storage, read> in : mat2x3<f32>;
@group(0) @binding(1)
var<storage, read_write> out : mat2x3<f32>;
@stage(compute) @workgroup_size(1)
fn main() {
out = in;
}