18 lines
729 B
LLVM
18 lines
729 B
LLVM
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1010 -mattr=+cumode < %s | FileCheck -check-prefix=GFX10 %s
|
||
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1010 < %s | FileCheck -check-prefix=GFX10-CU %s
|
||
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1100 -mattr=+cumode < %s | FileCheck -check-prefix=GFX10 %s
|
||
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1100 < %s | FileCheck -check-prefix=GFX10-CU %s
|
||
|
|
||
|
; GFX10: .amdhsa_workgroup_processor_mode 0
|
||
|
; GFX10: .workgroup_processor_mode: 0
|
||
|
; GFX10-CU: .amdhsa_workgroup_processor_mode 1
|
||
|
; GFX10-CU: .workgroup_processor_mode: 1
|
||
|
|
||
|
define amdgpu_kernel void @wavefrontsize() {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
!llvm.module.flags = !{!0}
|
||
|
!0 = !{i32 1, !"amdgpu_code_object_version", i32 500}
|