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