blob: 6b5b9f1249797938fc9e91759007e568fd49d05a [file] [log] [blame]
// RUN: mlir-opt %s --test-gpu-to-cubin | FileCheck %s
// CHECK: gpu.module @foo attributes {gpu.binary = "CUBIN"}
gpu.module @foo {
llvm.func @kernel(%arg0 : f32, %arg1 : !llvm.ptr<f32>)
// CHECK: attributes {gpu.kernel}
attributes { gpu.kernel } {
llvm.return
}
}
// CHECK: gpu.module @bar attributes {gpu.binary = "CUBIN"}
gpu.module @bar {
// CHECK: func @kernel_a
llvm.func @kernel_a()
attributes { gpu.kernel } {
llvm.return
}
// CHECK: func @kernel_b
llvm.func @kernel_b()
attributes { gpu.kernel } {
llvm.return
}
}