Skip to content

Commit e861e49

Browse files
authored
Fix bazel BUILD after 7d1b9ca (llvm#153388)
1 parent 88c993f commit e861e49

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4133,6 +4133,7 @@ cc_library(
41334133
":TosaToTensor",
41344134
":UBToLLVM",
41354135
":UBToSPIRV",
4136+
":VectorToAMX",
41364137
":VectorToArmSME",
41374138
":VectorToGPU",
41384139
":VectorToLLVM",
@@ -11132,6 +11133,32 @@ cc_library(
1113211133
],
1113311134
)
1113411135

11136+
cc_library(
11137+
name = "VectorToAMX",
11138+
srcs = glob([
11139+
"lib/Conversion/VectorToAMX/*.cpp",
11140+
]),
11141+
hdrs = glob([
11142+
"include/mlir/Conversion/VectorToAMX/*.h",
11143+
]),
11144+
includes = ["include"],
11145+
deps = [
11146+
":AMXDialect",
11147+
":AffineDialect",
11148+
":AffineUtils",
11149+
":ArithDialect",
11150+
":ConversionPassIncGen",
11151+
":DialectUtils",
11152+
":IR",
11153+
":LinalgInterfaces",
11154+
":MemRefDialect",
11155+
":Pass",
11156+
":SCFDialect",
11157+
":TransformUtils",
11158+
":VectorDialect",
11159+
],
11160+
)
11161+
1113511162
cc_library(
1113611163
name = "VectorToGPU",
1113711164
srcs = glob([

0 commit comments

Comments
 (0)