File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -3687,6 +3687,45 @@ cc_library(
3687
3687
],
3688
3688
)
3689
3689
3690
+ gentbl_cc_library (
3691
+ name = "XeGPUPassIncGen" ,
3692
+ tbl_outs = [
3693
+ (
3694
+ [
3695
+ "-gen-pass-decls" ,
3696
+ "-name=XeGPU" ,
3697
+ ],
3698
+ "include/mlir/Dialect/XeGPU/Transforms/Passes.h.inc" ,
3699
+ ),
3700
+ ],
3701
+ tblgen = ":mlir-tblgen" ,
3702
+ td_file = "include/mlir/Dialect/XeGPU/Transforms/Passes.td" ,
3703
+ deps = [":PassBaseTdFiles" ],
3704
+ )
3705
+
3706
+ cc_library (
3707
+ name = "XeGPUTransforms" ,
3708
+ srcs = glob ([
3709
+ "lib/Dialect/XeGPU/Transforms/*.cpp" ,
3710
+ ]),
3711
+ hdrs = glob ([
3712
+ "include/mlir/Dialect/XeGPU/Transforms/*.h" ,
3713
+ ]),
3714
+ includes = ["include" ],
3715
+ deps = [
3716
+ ":AffineUtils" ,
3717
+ ":IR" ,
3718
+ ":MemRefDialect" ,
3719
+ ":Pass" ,
3720
+ ":SideEffectInterfaces" ,
3721
+ ":Support" ,
3722
+ ":TransformUtils" ,
3723
+ ":XeGPUDialect" ,
3724
+ ":XeGPUPassIncGen" ,
3725
+ “// llvm :Support ",
3726
+ ],
3727
+ )
3728
+
3690
3729
td_library (
3691
3730
name = "FuncTdFiles" ,
3692
3731
srcs = [
@@ -9229,6 +9268,7 @@ cc_library(
9229
9268
":X86VectorDialect" ,
9230
9269
":X86VectorTransforms" ,
9231
9270
":XeGPUDialect" ,
9271
+ ":XeGPUTransforms" ,
9232
9272
":config" ,
9233
9273
],
9234
9274
)
You can’t perform that action at this time.
0 commit comments