Skip to content

Commit 2c292f8

Browse files
committed
Adding bazel target for VectorToAMDGPU
1 parent f7ca23b commit 2c292f8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4466,6 +4466,7 @@ cc_library(
44664466
":TosaToTensor",
44674467
":UBToLLVM",
44684468
":UBToSPIRV",
4469+
":VectorToAMDGPU",
44694470
":VectorToArmSME",
44704471
":VectorToGPU",
44714472
":VectorToLLVM",
@@ -12189,6 +12190,27 @@ cc_library(
1218912190
],
1219012191
)
1219112192

12193+
cc_library(
12194+
name = "VectorToAMDGPU",
12195+
srcs = glob([
12196+
"lib/Conversion/VectorToAMDGPU/*.cpp",
12197+
]),
12198+
hdrs = glob([
12199+
"include/mlir/Conversion/VectorToAMDGPU/*.h",
12200+
]),
12201+
includes = ["include"],
12202+
deps = [
12203+
":AMDGPUDialect",
12204+
":VectorDialect",
12205+
":ConversionPassIncGen",
12206+
":IR",
12207+
":MemRefDialect",
12208+
":Pass",
12209+
":TransformUtils",
12210+
"//llvm:Support",
12211+
],
12212+
)
12213+
1219212214
cc_library(
1219312215
name = "VectorToArmSME",
1219412216
srcs = glob([

0 commit comments

Comments
 (0)