torch-mlir/test/Conversion/TorchToLinalg
Sean Silva 84a9693006 Elide `!torch.` prefix in nested dialect types.
This leads to much more succinct types in many cases:

```
!torch.list<!torch.int>
!torch.list<int>

!torch.tuple<!torch.list<!torch.int>, !torch.list<!torch.int>>
!torch.tuple<list<int>, list<int>>

!torch.optional<!torch.list<!torch.int>>
!torch.optional<list<int>>

!torch.list<list<list<tensor>>>
!torch.list<!torch.list<!torch.list<!torch.tensor>>>
```

I would like to take this further and allow omitting the `!torch.`
prefix in all cases, but that's harder -- for example, we currently use
`FuncOp` for functions, and so I don't think we can customize the
printing there. It seems like it will be a longer road to getting that
level of customization.
2022-03-15 17:24:08 -07:00
..
basic.mlir [LINALG] Add torch-to-linalg lowering for `TensorStaticInfoCastOp` (#634) 2022-03-02 13:35:26 -08:00
elementwise.mlir Update llvm-project to a54f4eae0e1d0ef5adccdcf9f6c2b518dc1101aa 2021-10-18 13:36:42 -04:00
flatten.mlir Update external/llvm-project 2022-01-18 13:25:42 -05:00
pooling.mlir Elide `!torch.` prefix in nested dialect types. 2022-03-15 17:24:08 -07:00
unsqueeze.mlir Update external/llvm-project 2022-01-18 13:25:42 -05:00