Skip to content

Commit db7750b

Browse files
committed
add TPP pipeline
1 parent 003c86a commit db7750b

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

docs/rfcs/PipelineComposition.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ Here is some examples where non-trivial pipeline dependencies are needed.
9191

9292
#### Numba-mlir
9393

94+
https://github.com/numba/numba-mlir
95+
9496
```
9597
frontend
9698
|
@@ -140,4 +142,29 @@ lower-to-llvm: [optimization], [], []
140142

141143
#### TPP
142144

143-
TBD
145+
https://github.com/plaidml/tpp-mlir
146+
```
147+
frontend
148+
/ \
149+
V V
150+
gpu-pipeline default-pipeline
151+
\ /
152+
V V
153+
bufferization
154+
|
155+
V
156+
linalg-lowering
157+
|
158+
V
159+
lower-to-llvm
160+
```
161+
162+
Pipeline will looks like:
163+
```
164+
frontend: [], [], []
165+
gpu-pipeline: [frontend], [bufferization], []
166+
default-pipeline: [frontend], [bufferization], []
167+
bufferization: [], [linalg-lowering], []
168+
linalg-lowering: [], [lower-to-llvm], []
169+
lower-to-llvm: [], [], []
170+
```

0 commit comments

Comments
 (0)