blob: ed946a709422ff4eb6b33b02241498af0e2baca3 [file] [log] [blame]
enable f16;
fn dot_cd5a04() {
var res : f16 = dot(vec2<f16>(1.0h), vec2<f16>(1.0h));
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : f16;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
dot_cd5a04();
return vec4<f32>();
}
@fragment
fn fragment_main() {
dot_cd5a04();
}
@compute @workgroup_size(1)
fn compute_main() {
dot_cd5a04();
}