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