From 185dbf9d6f00262caa4b0e56532ab868d0ef2aa3 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 10 Feb 2023 19:02:01 +0100 Subject: [PATCH] [bazel] Port 81a79ee446 --- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 1 + utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index a2fa5c3..7bf3791 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -7033,6 +7033,7 @@ cc_binary( "//mlir/test:TestIR", "//mlir/test:TestLLVM", "//mlir/test:TestLinalg", + "//mlir/test:TestLoopLikeInterface", "//mlir/test:TestMath", "//mlir/test:TestMemRef", "//mlir/test:TestNVGPU", diff --git a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel index 01524c0..5f4a6bb 100644 --- a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel @@ -382,6 +382,18 @@ cc_library( ) cc_library( + name = "TestLoopLikeInterface", + srcs = glob(["lib/Interfaces/LoopLikeInterface/*.cpp"]), + deps = [ + "//llvm:Support", + "//mlir:FuncDialect", + "//mlir:IR", + "//mlir:LoopLikeInterface", + "//mlir:Pass", + ], +) + +cc_library( name = "TestTilingInterface", srcs = glob(["lib/Interfaces/TilingInterface/*.cpp"]), includes = ["lib/Dialect/Test"], -- 2.7.4