Skip to content

Commit

Permalink
[NFC][LinalgExt] Move tiling tests and implementations from IR to Tra…
Browse files Browse the repository at this point in the history
…nsforms (iree-org#17216)

This PR moves all tiling interface implementations and tests from
`LinalgExt/IR` to `LinalgExt/Transforms`. It makes more sense to have
tiling implementations in transforms, and this more closely aligns with
the Linalg dialect upstream.
  • Loading branch information
Max191 authored May 9, 2024
1 parent 778bf31 commit fc3561c
Show file tree
Hide file tree
Showing 10 changed files with 1,704 additions and 1,624 deletions.
1,620 changes: 0 additions & 1,620 deletions compiler/src/iree/compiler/Dialect/LinalgExt/IR/LinalgExtOps.cpp

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ iree_lit_test_suite(
srcs = enforce_glob(
[
"canonicalize.mlir",
"distribution.mlir",
"invalid.mlir",
"roundtrip.mlir",
"tiling.mlir",
],
include = ["*.mlir"],
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ iree_lit_test_suite(
lit
SRCS
"canonicalize.mlir"
"distribution.mlir"
"invalid.mlir"
"roundtrip.mlir"
"tiling.mlir"
TOOLS
FileCheck
iree-opt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ iree_compiler_cc_library(
"Passes.cpp",
"SplitReduction.cpp",
"TileAndDecomposeAttention.cpp",
"TilingInterfaceImpl.cpp",
],
hdrs = [
"Passes.h",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ iree_cc_library(
"Passes.cpp"
"SplitReduction.cpp"
"TileAndDecomposeAttention.cpp"
"TilingInterfaceImpl.cpp"
DEPS
::PassesIncGen
IREEInputDialect
Expand Down
Loading

0 comments on commit fc3561c

Please sign in to comment.