diff options
author | Alexander Belyaev <pifon@google.com> | 2022-10-27 09:39:52 +0200 |
---|---|---|
committer | Alexander Belyaev <pifon@google.com> | 2022-10-27 10:19:04 +0200 |
commit | 350d68644445f53551df1a4ddd69bd4f54f09fff (patch) | |
tree | cb005c52a9c01e19987176759252488d66800cec /llvm/lib/Support/StringRef.cpp | |
parent | cfaf3292df51090d03c1f98a95668246006813e1 (diff) | |
download | llvm-350d68644445f53551df1a4ddd69bd4f54f09fff.zip llvm-350d68644445f53551df1a4ddd69bd4f54f09fff.tar.gz llvm-350d68644445f53551df1a4ddd69bd4f54f09fff.tar.bz2 |
[mlir] Print bbArgs of linalg.map/reduce/tranpose on the next line.
```
%mapped = linalg.map
ins(%arg0 : tensor<64xf32>)
outs(%arg1 : tensor<64xf32>)
(%in: f32) {
%0 = math.absf %in : f32
linalg.yield %0 : f32
}
%reduced = linalg.reduce
ins(%arg0 : tensor<16x32x64xf32>)
outs(%arg1 : tensor<16x64xf32>)
dimensions = [1]
(%in: f32, %init: f32) {
%0 = arith.addf %in, %init : f32
linalg.yield %0 : f32
}
%transposed = linalg.transpose
ins(%arg0 : tensor<16x32x64xf32>)
outs(%arg1 : tensor<32x64x16xf32>)
permutation = [1, 2, 0]
```
Differential Revision: https://reviews.llvm.org/D136818
Diffstat (limited to 'llvm/lib/Support/StringRef.cpp')
0 files changed, 0 insertions, 0 deletions