blob: c7122303bb2adca0cdbb179f3c62512a2b9eba9c [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> v : buffer;
@group(0) @binding(1) var<storage, read_write> out : u32;
@compute @workgroup_size(1)
fn main() {
out = bufferLength(&v);
}