blob: f393f82ccd4a37fd036db4baf925d79d31aa3096 [file] [log] [blame]
@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);
}