blob: 47087ec163a8d1655844439d3622e0a2f0864c6a [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : vec3<f32>;
@group(0) @binding(1) var<storage, read_write> s: vec3<f32>;
@compute @workgroup_size(1)
fn main() {
let x = u;
s = x;
}