Context: https://discourse.llvm.org/t/psa-retire-linalg-filter-based-patterns/63785
Uses of LinalgTilingPattern::returningMatchAndRewrite are replaced by a top-level tileWithLinalgTilingOptions function that is marked obsolete and serves
as a temporary means to transition away from LinalgTilingOptions-based tiling.
LinalgTilingOptions supports too many options that have been orthogonalized with the use of the transform dialect.
Additionally, the revision introduces a transform.structured.tile_to_scf_for structured transform operation that is needed to properly tile tensor.pad
via the TilingInterface. Uses of transform.structured.tile will be deprecated and replaced by this new op.
This will achieve the deprecation of linalg::tileLinalgOp.
Context: https://discourse.llvm.org/t/psa-retire-tileandfuselinalgops-method/63850
In the process of transitioning, tests that were performing tile and distribute on tensors are retired: transformations should be orthogonalized better in the future.
In particular, tiling to specific loop types and tileAndDistribute behavior are not available via the transform ops.
The behavior is still available as part of the tileWithLinalgTilingOptions method to allow downstream clients to transition without breakages but is meant to be retired soon.
As more tests are ported to the transform dialect, it became necessary to introduce a test-transform-dialect-erase-schedule-pass to discard the transform specification
once applied so that e2e lowering and execution is possible.
Lastly, a number of redundant tests that were testing composition of patterns are retired as they are available with a better mechanism via the transform dialect.
There is a bunch of unrelated rewrapping that doesn't seem necessary. The lines were 80 cols wide, is your editor set to 79?
This feels spurious and pollutes the change history.