blob: b1ba09604cce0aa2d6336ee90790e7fec5d38808 [file] [log] [blame]
enable f16;
fn transpose_06794e() {
var res : mat3x3<f16> = transpose(mat3x3<f16>(1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
transpose_06794e();
return vec4<f32>();
}
@fragment
fn fragment_main() {
transpose_06794e();
}
@compute @workgroup_size(1)
fn compute_main() {
transpose_06794e();
}