File tree Expand file tree Collapse file tree 2 files changed +13
-33
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +13
-33
lines changed Original file line number Diff line number Diff line change @@ -880,7 +880,6 @@ mlir_c_api_cc_library(
880
880
includes = ["include" ],
881
881
deps = [
882
882
":ConversionPasses" ,
883
- ":ConvertToSPIRV" ,
884
883
":Pass" ,
885
884
],
886
885
)
@@ -4332,7 +4331,6 @@ cc_library(
4332
4331
":ControlFlowToSPIRV" ,
4333
4332
":ConversionPassIncGen" ,
4334
4333
":ConvertToLLVM" ,
4335
- ":ConvertToSPIRV" ,
4336
4334
":FuncToEmitC" ,
4337
4335
":FuncToLLVM" ,
4338
4336
":FuncToSPIRV" ,
@@ -8659,36 +8657,6 @@ cc_library(
8659
8657
],
8660
8658
)
8661
8659
8662
- cc_library (
8663
- name = "ConvertToSPIRV" ,
8664
- srcs = ["lib/Conversion/ConvertToSPIRV/ConvertToSPIRVPass.cpp" ],
8665
- hdrs = ["include/mlir/Conversion/ConvertToSPIRV/ConvertToSPIRVPass.h" ],
8666
- includes = ["include" ],
8667
- deps = [
8668
- ":ArithToSPIRV" ,
8669
- ":ArithTransforms" ,
8670
- ":ConversionPassIncGen" ,
8671
- ":FuncToSPIRV" ,
8672
- ":GPUDialect" ,
8673
- ":GPUToSPIRV" ,
8674
- ":IR" ,
8675
- ":IndexToSPIRV" ,
8676
- ":MemRefToSPIRV" ,
8677
- ":Pass" ,
8678
- ":Rewrite" ,
8679
- ":SCFToSPIRV" ,
8680
- ":SPIRVConversion" ,
8681
- ":SPIRVDialect" ,
8682
- ":SPIRVTransforms" ,
8683
- ":TransformUtils" ,
8684
- ":Transforms" ,
8685
- ":UBToSPIRV" ,
8686
- ":VectorDialect" ,
8687
- ":VectorToSPIRV" ,
8688
- ":VectorTransforms" ,
8689
- ],
8690
- )
8691
-
8692
8660
cc_library (
8693
8661
name = "VectorToXeGPU" ,
8694
8662
srcs = ["lib/Conversion/VectorToXeGPU/VectorToXeGPU.cpp" ],
Original file line number Diff line number Diff line change @@ -546,21 +546,33 @@ cc_library(
546
546
deps = [
547
547
":TestDialect" ,
548
548
"//llvm:Support" ,
549
- "//mlir:ConvertToSPIRV" ,
549
+ "//mlir:ArithToSPIRV" ,
550
+ "//mlir:ArithTransforms" ,
550
551
"//mlir:FuncDialect" ,
552
+ "//mlir:FuncToSPIRV" ,
551
553
"//mlir:GPUDialect" ,
552
554
"//mlir:GPUToGPURuntimeTransforms" ,
553
555
"//mlir:GPUToSPIRV" ,
554
556
"//mlir:GPUTransforms" ,
555
557
"//mlir:IR" ,
558
+ "//mlir:IndexToSPIRV" ,
556
559
"//mlir:LLVMIRTransforms" ,
557
560
"//mlir:MemRefToLLVM" ,
561
+ "//mlir:MemRefToSPIRV" ,
558
562
"//mlir:MemRefTransforms" ,
559
563
"//mlir:Pass" ,
564
+ "//mlir:Rewrite" ,
565
+ "//mlir:SCFToSPIRV" ,
566
+ "//mlir:SPIRVConversion" ,
560
567
"//mlir:SPIRVDialect" ,
561
568
"//mlir:SPIRVToLLVM" ,
562
569
"//mlir:SPIRVTransforms" ,
563
570
"//mlir:Support" ,
571
+ "//mlir:TransformUtils" ,
572
+ "//mlir:UBToSPIRV" ,
573
+ "//mlir:VectorDialect" ,
574
+ "//mlir:VectorToSPIRV" ,
575
+ "//mlir:VectorTransforms" ,
564
576
],
565
577
)
566
578
You can’t perform that action at this time.
0 commit comments