llvm-project/mlir/test
Nicolas Vasilache c9d5f3418a Cleanup SuperVectorization dialect printing and parsing.
On the read side,
```
%3 = vector_transfer_read %arg0, %i2, %i1, %i0 {permutation_map: (d0, d1, d2)->(d2, d0)} : (memref<?x?x?xf32>, index, index, index) -> vector<32x256xf32>
```

becomes:

```
%3 = vector_transfer_read %arg0[%i2, %i1, %i0] {permutation_map: (d0, d1, d2)->(d2, d0)} : memref<?x?x?xf32>, vector<32x256xf32>
```

On the write side,

```
vector_transfer_write %0, %arg0, %c3, %c3 {permutation_map: (d0, d1)->(d0)} : vector<128xf32>, memref<?x?xf32>, index, index
```

becomes

```
vector_transfer_write %0, %arg0[%c3, %c3] {permutation_map: (d0, d1)->(d0)} : vector<128xf32>, memref<?x?xf32>
```

Documentation will be cleaned up in a followup commit that also extracts a proper .md from the top of the file comments.

PiperOrigin-RevId: 241021879
2019-03-29 17:56:42 -07:00
..
AffineOps Introduce affine terminator 2019-03-29 17:44:24 -07:00
EDSC Cleanup SuperVectorization dialect printing and parsing. 2019-03-29 17:56:42 -07:00
IR Cleanup SuperVectorization dialect printing and parsing. 2019-03-29 17:56:42 -07:00
LLVMIR Change the muli-return syntax for operations. The name of the operation result now contains the number of results that it refers to if the number of results is greater than 1. 2019-03-29 17:51:32 -07:00
Pass Update the multi-threaded pass timing to not assume that total time will be different from user time. 2019-03-29 17:49:14 -07:00
Target Remove "<label>" from the llvm basic block CHECK names. 2019-03-29 17:32:06 -07:00
Transforms Cleanup SuperVectorization dialect printing and parsing. 2019-03-29 17:56:42 -07:00
mlir-cpu-runner Remove global LLVM CLI variables from library code 2019-03-29 17:50:23 -07:00
mlir-tblgen [TableGen] Support benefit score in pattern definition. 2019-03-29 17:55:55 -07:00