blob: f5abaa248198f32822cbe5d02c1c8befc028485a [file] [log] [blame]
enable f16;
var<private> m = mat3x3<f16>();
@group(0) @binding(0) var<storage, read_write> out : mat3x3<f16>;
@compute @workgroup_size(1)
fn f() {
out = m;
}