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