File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -8380,6 +8380,18 @@ cc_library(
8380
8380
],
8381
8381
)
8382
8382
8383
+ cc_library (
8384
+ name = "SPIRVToLLVMIRTranslation" ,
8385
+ srcs = glob (["lib/Target/LLVMIR/Dialect/SPIRV/*.cpp" ]),
8386
+ hdrs = glob (["include/mlir/Target/LLVMIR/Dialect/SPIRV/*.h" ]),
8387
+ includes = ["include" ],
8388
+ deps = [
8389
+ ":IR" ,
8390
+ ":SPIRVDialect" ,
8391
+ ":ToLLVMIRTranslation" ,
8392
+ ],
8393
+ )
8394
+
8383
8395
cc_library (
8384
8396
name = "GPUToLLVMIRTranslation" ,
8385
8397
srcs = [
@@ -8516,6 +8528,7 @@ cc_library(
8516
8528
":OpenMPToLLVMIRTranslation" ,
8517
8529
":ROCDLTarget" ,
8518
8530
":ROCDLToLLVMIRTranslation" ,
8531
+ ":SPIRVToLLVMIRTranslation" ,
8519
8532
":X86VectorToLLVMIRTranslation" ,
8520
8533
],
8521
8534
)
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ expand_template(
41
41
"@MLIR_ENABLE_CUDA_RUNNER@" : "0" ,
42
42
"@MLIR_ENABLE_ROCM_CONVERSIONS@" : "0" ,
43
43
"@MLIR_ENABLE_ROCM_RUNNER@" : "0" ,
44
+ "@MLIR_ENABLE_SYCL_RUNNER@" : "0" ,
44
45
"@MLIR_ENABLE_SPIRV_CPU_RUNNER@" : "0" ,
45
46
"@MLIR_ENABLE_VULKAN_RUNNER@" : "0" ,
46
47
"@MLIR_ENABLE_BINDINGS_PYTHON@" : "0" ,
You can’t perform that action at this time.
0 commit comments