File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -5509,6 +5509,7 @@ cc_library(
5509
5509
":VCIXToLLVMIRTranslation" ,
5510
5510
":VectorDialect" ,
5511
5511
":XeVMDialect" ,
5512
+ ":XeVMTarget" ,
5512
5513
":config" ,
5513
5514
"//llvm:Core" ,
5514
5515
"//llvm:MC" ,
@@ -9103,6 +9104,7 @@ cc_library(
9103
9104
":X86VectorDialect" ,
9104
9105
":XeGPUDialect" ,
9105
9106
":XeVMDialect" ,
9107
+ ":XeVMTarget" ,
9106
9108
],
9107
9109
)
9108
9110
@@ -9197,6 +9199,7 @@ cc_library(
9197
9199
":VectorToLLVM" ,
9198
9200
":VectorTransformOps" ,
9199
9201
":XeVMToLLVM" ,
9202
+ ":XeVMToLLVMIRTranslation" ,
9200
9203
],
9201
9204
)
9202
9205
@@ -13817,6 +13820,32 @@ gentbl_cc_library(
13817
13820
deps = [":XeVMTdFiles" ],
13818
13821
)
13819
13822
13823
+ cc_library (
13824
+ name = "XeVMTarget" ,
13825
+ srcs = ["lib/Target/LLVM/XeVM/Target.cpp" ],
13826
+ hdrs = glob (["include/mlir/Target/LLVM/XeVM/*.h" ]),
13827
+ includes = ["include" ],
13828
+ deps = [
13829
+ ":ExecutionEngineUtils" ,
13830
+ ":GPUDialect" ,
13831
+ ":GPUToLLVMIRTranslation" ,
13832
+ ":IR" ,
13833
+ ":LLVMToLLVMIRTranslation" ,
13834
+ ":Support" ,
13835
+ ":TargetLLVM" ,
13836
+ ":ToLLVMIRTranslation" ,
13837
+ ":XeVMDialect" ,
13838
+ ":XeVMToLLVMIRTranslation" ,
13839
+ "//llvm:BitWriter" ,
13840
+ "//llvm:Core" ,
13841
+ "//llvm:Object" ,
13842
+ "//llvm:SPIRVCodeGen" ,
13843
+ "//llvm:Support" ,
13844
+ "//llvm:Target" ,
13845
+ "//llvm:config" ,
13846
+ ],
13847
+ )
13848
+
13820
13849
cc_library (
13821
13850
name = "XeVMToLLVM" ,
13822
13851
srcs = glob ([
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ expand_template(
47
47
"@MLIR_ENABLE_SPIRV_CPU_RUNNER@" : "0" ,
48
48
"@MLIR_ENABLE_VULKAN_RUNNER@" : "0" ,
49
49
"@MLIR_ENABLE_BINDINGS_PYTHON@" : "0" ,
50
+ "@MLIR_ENABLE_XEVM_CONVERSIONS@" : "0" ,
50
51
"@MLIR_RUN_AMX_TESTS@" : "0" ,
51
52
"@MLIR_RUN_ARM_SVE_TESTS@" : "0" ,
52
53
"@MLIR_RUN_ARM_SME_TESTS@" : "0" ,
You can’t perform that action at this time.
0 commit comments