Skip to content

Commit

Permalink
add TPP pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Hardcode84 committed May 7, 2024
1 parent 1aee61b commit e78f869
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion docs/rfcs/PipelineComposition.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ Here is some examples where non-trivial pipeline dependencies are needed.

#### Numba-mlir

https://github.com/numba/numba-mlir

```
frontend
|
Expand Down Expand Up @@ -140,4 +142,29 @@ lower-to-llvm: [optimization], [], []

#### TPP

TBD
https://github.com/plaidml/tpp-mlir
```
frontend
/ \
V V
gpu-pipeline default-pipeline
\ /
V V
bufferization
|
V
linalg-lowering
|
V
lower-to-llvm
```

Pipeline will looks like:
```
frontend: [], [], []
gpu-pipeline: [frontend], [bufferization], []
default-pipeline: [frontend], [bufferization], []
bufferization: [], [linalg-lowering], []
linalg-lowering: [], [lower-to-llvm], []
lower-to-llvm: [], [], []
```

0 comments on commit e78f869

Please sign in to comment.