1; RUN: llc -mtriple=amdgcn -mcpu=gfx900 -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=WARN %s 2 3; 1024 flat work group size across 2560 possible threads -> occupancy should be 8 max. 4; WARN: warning: <unknown>:0:0: failed to meet occupancy target given by 'amdgpu-waves-per-eu' in 'occupancy_8_target_9': desired occupancy was 9, final occupancy is 8 5define amdgpu_kernel void @occupancy_8_target_9() #0 { 6 ret void 7} 8 9; Impossible occupancy target 10; WARN: warning: <unknown>:0:0: failed to meet occupancy target given by 'amdgpu-waves-per-eu' in 'impossible_occupancy': desired occupancy was 11, final occupancy is 10 11define amdgpu_kernel void @impossible_occupancy() #1 { 12 ret void 13} 14 15attributes #0 = { "amdgpu-flat-work-group-size"="1024,1024" "amdgpu-waves-per-eu"="9" } 16attributes #1 = { "amdgpu-flat-work-group-size"="1,256" "amdgpu-waves-per-eu"="11" } 17