Searched refs:ipow2 (Results 1 – 1 of 1) sorted by relevance
124 unsigned ipow2(unsigned n) { return n == 0 ? 1 : 2 * ipow2(n - 1); } in ipow2() function130 __attribute__((amdgpu_flat_work_group_size(ipow2(5), 64)))133 __attribute__((amdgpu_flat_work_group_size(32, ipow2(6))))192 __attribute__((amdgpu_waves_per_eu(ipow2(1))))195 __attribute__((amdgpu_waves_per_eu(2, ipow2(2))))