CUDA-12 no longer supports 32-bit compilation. Tests agnostic to 32/64 compilation mode are switched to use nvptx64. Tests that do care about it have 32-bit ptxas compilation disabled with cuda-12+. Differential Revision: https://reviews.llvm.org/D152199
27 lines
796 B
LLVM
27 lines
796 B
LLVM
; RUN: llc < %s -march=nvptx -mcpu=sm_20 -verify-machineinstrs | FileCheck %s
|
|
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 -verify-machineinstrs | FileCheck %s
|
|
; RUN: %if ptxas && !ptxas-12.0 %{ llc < %s -march=nvptx -mcpu=sm_20 -verify-machineinstrs | %ptxas-verify %}
|
|
; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_20 -verify-machineinstrs | %ptxas-verify %}
|
|
|
|
; CHECK: .func ({{.*}}) device_func
|
|
define float @device_func(float %a) noinline {
|
|
%ret = fmul float %a, %a
|
|
ret float %ret
|
|
}
|
|
|
|
; CHECK: .entry kernel_func
|
|
define void @kernel_func(ptr %a) {
|
|
%val = load float, ptr %a
|
|
; CHECK: call.uni (retval0),
|
|
; CHECK: device_func,
|
|
%mul = call float @device_func(float %val)
|
|
store float %mul, ptr %a
|
|
ret void
|
|
}
|
|
|
|
|
|
|
|
!nvvm.annotations = !{!1}
|
|
|
|
!1 = !{ptr @kernel_func, !"kernel", i32 1}
|