17 lines
443 B
MLIR
17 lines
443 B
MLIR
![]() |
// RUN: %PYTHON -m triton.tools.aot %s --target=llvm-ir --sm=80 | FileCheck %s
|
||
|
|
||
|
// == LLVM IR check begin ==
|
||
|
// CHECK-LABEL: ; ModuleID = 'LLVMDialectModule'
|
||
|
// CHECK: define void @test_empty_kernel
|
||
|
// CHECK: !nvvm.annotations
|
||
|
// CHECK: !{void (i32, half addrspace(1)*)* @test_empty_kernel, !"maxntidx", i32 128}
|
||
|
|
||
|
module attributes {"triton_gpu.num-warps" = 4 : i32} {
|
||
|
|
||
|
func @test_empty_kernel(%lb : index, %A : !tt.ptr<f16>) {
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
}
|