blob: 605bfee80336a444fa61bb47ae2f663ca22efff9 [file] [log] [blame]
struct SB {
data : array<i32>;
};
@group(0) @binding(0) var<storage, read_write> buffer : SB;
@stage(compute) @workgroup_size(1, 2, 3)
fn main(@builtin(global_invocation_id) id : vec3<u32>) {
buffer.data[id.x] = buffer.data[id.x] + 1;
}