blob: 184a9fb872f1d0090484d7473c68d9ce35109f2b [file] [log] [blame]
[[stage(compute), workgroup_size(1)]]
fn f() {
let a = vec3<f32>(1., 2., 3.);
let b = vec3<f32>(4., 5., 6.);
let r : vec3<f32> = a * b;
}