2021-06-24 20:27:42 +08:00
|
|
|
// RUN: mlir-opt %s -split-input-file -async-parallel-for=async-dispatch=false \
|
|
|
|
// RUN: | FileCheck %s --dump-input=always
|
2020-11-13 19:01:52 +08:00
|
|
|
|
2021-06-26 03:14:51 +08:00
|
|
|
// The structure of @parallel_compute_fn checked in the async dispatch test.
|
|
|
|
// Here we only check the structure of the sequential dispatch loop.
|
|
|
|
|
2020-11-13 19:01:52 +08:00
|
|
|
// CHECK-LABEL: @loop_1d
|
|
|
|
func @loop_1d(%arg0: index, %arg1: index, %arg2: index, %arg3: memref<?xf32>) {
|
|
|
|
// CHECK: %[[GROUP:.*]] = async.create_group
|
|
|
|
// CHECK: scf.for
|
2021-06-24 20:27:42 +08:00
|
|
|
// CHECK: %[[TOKEN:.*]] = async.execute
|
|
|
|
// CHECK: call @parallel_compute_fn
|
2020-11-13 19:01:52 +08:00
|
|
|
// CHECK: async.yield
|
|
|
|
// CHECK: async.add_to_group %[[TOKEN]], %[[GROUP]]
|
2021-06-24 20:27:42 +08:00
|
|
|
// CHECK: call @parallel_compute_fn
|
2020-11-13 19:01:52 +08:00
|
|
|
// CHECK: async.await_all %[[GROUP]]
|
|
|
|
scf.parallel (%i) = (%arg0) to (%arg1) step (%arg2) {
|
|
|
|
%one = constant 1.0 : f32
|
2021-02-10 20:53:11 +08:00
|
|
|
memref.store %one, %arg3[%i] : memref<?xf32>
|
2020-11-13 19:01:52 +08:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-24 20:27:42 +08:00
|
|
|
// CHECK-LABEL: func private @parallel_compute_fn
|
|
|
|
// CHECK: scf.for
|
|
|
|
// CHECK: memref.store
|
|
|
|
|
|
|
|
// -----
|
|
|
|
|
2020-11-13 19:01:52 +08:00
|
|
|
// CHECK-LABEL: @loop_2d
|
|
|
|
func @loop_2d(%arg0: index, %arg1: index, %arg2: index, // lb, ub, step
|
|
|
|
%arg3: index, %arg4: index, %arg5: index, // lb, ub, step
|
|
|
|
%arg6: memref<?x?xf32>) {
|
|
|
|
// CHECK: %[[GROUP:.*]] = async.create_group
|
|
|
|
// CHECK: scf.for
|
2021-06-24 20:27:42 +08:00
|
|
|
// CHECK: %[[TOKEN:.*]] = async.execute
|
|
|
|
// CHECK: call @parallel_compute_fn
|
|
|
|
// CHECK: async.yield
|
|
|
|
// CHECK: async.add_to_group %[[TOKEN]], %[[GROUP]]
|
|
|
|
// CHECK: call @parallel_compute_fn
|
2020-11-13 19:01:52 +08:00
|
|
|
// CHECK: async.await_all %[[GROUP]]
|
|
|
|
scf.parallel (%i0, %i1) = (%arg0, %arg3) to (%arg1, %arg4)
|
|
|
|
step (%arg2, %arg5) {
|
|
|
|
%one = constant 1.0 : f32
|
2021-02-10 20:53:11 +08:00
|
|
|
memref.store %one, %arg6[%i0, %i1] : memref<?x?xf32>
|
2020-11-13 19:01:52 +08:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-06-24 20:27:42 +08:00
|
|
|
|
|
|
|
// CHECK-LABEL: func private @parallel_compute_fn
|
|
|
|
// CHECK: scf.for
|
|
|
|
// CHECK: scf.for
|
|
|
|
// CHECK: memref.store
|