Skip to content

Commit ffabf73

Browse files
[NFC][OpenMP][MLIR] Add test for lowering parallel workshare GPU loop (#76144)
This test checks if MLIR code is lowered according to schema presented below: func1() { call __kmpc_parallel_51(..., func2, ...) } func2() { call __kmpc_for_static_loop_4u(..., func3, ...) } func3() { //loop body }
1 parent c165591 commit ffabf73

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// RUN: mlir-translate -mlir-to-llvmir %s | FileCheck %s
2+
3+
// The aim of the test is to check the GPU LLVM IR codegen
4+
// for nested omp do loop inside omp target region
5+
6+
module attributes {dlti.dl_spec = #dlti.dl_spec<#dlti.dl_entry<"dlti.alloca_memory_space", 5 : ui32>>, llvm.data_layout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-p7:160:256:256:32-p8:128:128-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-G1-ni:7:8", llvm.target_triple = "amdgcn-amd-amdhsa", omp.is_gpu = true, omp.is_target_device = true } {
7+
llvm.func @target_parallel_wsloop(%arg0: !llvm.ptr ){
8+
omp.parallel {
9+
%loop_ub = llvm.mlir.constant(9 : i32) : i32
10+
%loop_lb = llvm.mlir.constant(0 : i32) : i32
11+
%loop_step = llvm.mlir.constant(1 : i32) : i32
12+
omp.wsloop for (%loop_cnt) : i32 = (%loop_lb) to (%loop_ub) inclusive step (%loop_step) {
13+
%gep = llvm.getelementptr %arg0[0, %loop_cnt] : (!llvm.ptr, i32) -> !llvm.ptr, !llvm.array<10 x i32>
14+
llvm.store %loop_cnt, %gep : i32, !llvm.ptr
15+
omp.yield
16+
}
17+
omp.terminator
18+
}
19+
20+
llvm.return
21+
}
22+
23+
}
24+
// CHECK: call void @__kmpc_parallel_51(ptr addrspacecast
25+
// CHECK-SAME: (ptr addrspace(1) @[[GLOB:[0-9]+]] to ptr),
26+
// CHECK-SAME: i32 %[[THREAD_NUM:.*]], i32 1, i32 -1, i32 -1,
27+
// CHECK-SAME: ptr @[[PARALLEL_FUNC:.*]], ptr null, ptr %[[PARALLEL_ARGS:.*]], i64 1)
28+
29+
// CHECK: define internal void @[[PARALLEL_FUNC]]
30+
// CHECK-SAME: (ptr noalias noundef %[[TID_ADDR:.*]], ptr noalias noundef %[[ZERO_ADDR:.*]],
31+
// CHECK-SAME: ptr %[[ARG_PTR:.*]])
32+
// CHECK: call void @__kmpc_for_static_loop_4u(ptr addrspacecast (ptr addrspace(1) @[[GLOB]] to ptr),
33+
// CHECK-SAME: ptr @[[LOOP_BODY_FUNC:.*]], ptr %[[LOO_BODY_FUNC_ARG:.*]], i32 10,
34+
// CHECK-SAME: i32 %[[THREAD_NUM:.*]], i32 0)
35+
36+
// CHECK: define internal void @[[LOOP_BODY_FUNC]](i32 %[[CNT:.*]], ptr %[[LOOP_BODY_ARG_PTR:.*]]) {

0 commit comments

Comments
 (0)