blob: b6be63a408dbd4940892b8e70ef5f29056b4ea11 [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<storage, read> in : mat4x2<f16>;
@group(0) @binding(1) var<storage, read_write> out : mat4x2<f16>;
@compute @workgroup_size(1)
fn main() {
out = in;
}