[all-commits] [llvm/llvm-project] f507aa: [mlir] Implement lowering to LLVM of async.execute...

Eugene Zhulenev via All-commits all-commits at lists.llvm.org
Fri Oct 30 05:59:23 PDT 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: f507aa17b791af3028d321ccfb83c5bfaf315f02
      https://github.com/llvm/llvm-project/commit/f507aa17b791af3028d321ccfb83c5bfaf315f02
  Author: Eugene Zhulenev <ezhulenev at google.com>
  Date:   2020-10-30 (Fri, 30 Oct 2020)

  Changed paths:
    M mlir/lib/Conversion/AsyncToLLVM/AsyncToLLVM.cpp
    M mlir/test/Conversion/AsyncToLLVM/convert-to-llvm.mlir
    M mlir/test/mlir-cpu-runner/async.mlir

  Log Message:
  -----------
  [mlir] Implement lowering to LLVM of async.execute ops with token dependencies

Add support for lowering `async.execute` operations with token dependencies

Example:

```
%dep = ... : !async.token
%token = async.execute[%dep] {
...
}
```

Token dependencies lowered to `async.await` operations inside the outline coroutine body.

Reviewed By: herhut, mehdi_amini, ftynse

Differential Revision: https://reviews.llvm.org/D89958




More information about the All-commits mailing list