Skip to content

Commit 27e8e08

Browse files
authored
[bazel] port d30554b (#138022)
1 parent 9b8c96a commit 27e8e08

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

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

+15
Original file line numberDiff line numberDiff line change
@@ -3421,17 +3421,32 @@ cc_library(
34213421
":Analysis",
34223422
":FunctionInterfaces",
34233423
":GPUDialect",
3424+
":GPUUtils",
34243425
":IR",
3426+
":InliningUtils",
34253427
":MemRefDialect",
34263428
":Pass",
34273429
":TransformUtils",
34283430
":VectorDialect",
3431+
":VectorTransforms",
34293432
":XeGPUDialect",
34303433
":XeGPUPassIncGen",
3434+
":XeGPUUtils",
34313435
"//llvm:Support",
34323436
],
34333437
)
34343438

3439+
cc_library(
3440+
name = "XeGPUUtils",
3441+
srcs = glob(["lib/Dialect/XeGPU/Utils/*.cpp"]),
3442+
hdrs = glob(["include/mlir/Dialect/XeGPU/Utils/*.h"]),
3443+
includes = ["include"],
3444+
deps = [
3445+
":IR",
3446+
":XeGPUDialect",
3447+
],
3448+
)
3449+
34353450
td_library(
34363451
name = "FuncTdFiles",
34373452
srcs = [

0 commit comments

Comments
 (0)