blob: 8f3614940ea2856a163095da8d7100a6f21422b2 [file] [log] [blame]
enable f16;
fn transpose_844869() {
var res : mat4x4<f16> = transpose(mat4x4<f16>(1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 1.0h, 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_844869();
return vec4<f32>();
}
@fragment
fn fragment_main() {
transpose_844869();
}
@compute @workgroup_size(1)
fn compute_main() {
transpose_844869();
}