forked from OSchip/llvm-project
[mlir][Bazel] Add TestMemRef target.
Needed after D118285 Differential Revision: https://reviews.llvm.org/D118330
This commit is contained in:
parent
426437d1fe
commit
199c2d63fd
|
@ -5719,6 +5719,7 @@ cc_binary(
|
|||
"//mlir/test:TestIR",
|
||||
"//mlir/test:TestLinalg",
|
||||
"//mlir/test:TestMath",
|
||||
"//mlir/test:TestMemRef",
|
||||
"//mlir/test:TestPass",
|
||||
"//mlir/test:TestReducer",
|
||||
"//mlir/test:TestRewrite",
|
||||
|
|
|
@ -430,6 +430,20 @@ cc_library(
|
|||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "TestMemRef",
|
||||
srcs = glob(["lib/Dialect/MemRef/*.cpp"]),
|
||||
defines = ["MLIR_CUDA_CONVERSIONS_ENABLED"],
|
||||
includes = ["lib/Dialect/Test"],
|
||||
deps = [
|
||||
":TestDialect",
|
||||
"//mlir:Affine",
|
||||
"//mlir:MemRefTransforms",
|
||||
"//mlir:Pass",
|
||||
"//mlir:Transforms",
|
||||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "TestSCF",
|
||||
srcs = glob(["lib/Dialect/SCF/*.cpp"]),
|
||||
|
|
Loading…
Reference in New Issue