Integrate LLVM at https://github.com/llvm/llvm-project/commit/1a7f115dce22
PiperOrigin-RevId: 316608084 Change-Id: I6df721c782e850371267e6a2fba7eda96d3b1610
This commit is contained in:
parent
6166444602
commit
7ee9571a8e
22
third_party/mlir/BUILD
vendored
22
third_party/mlir/BUILD
vendored
@ -756,6 +756,25 @@ cc_library(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
cc_library(
|
||||||
|
name = "ShapeToSCF",
|
||||||
|
srcs = glob([
|
||||||
|
"lib/Conversion/ShapeToSCF/*.cpp",
|
||||||
|
"lib/Conversion/ShapeToSCF/*.h",
|
||||||
|
]) + ["lib/Conversion/PassDetail.h"],
|
||||||
|
hdrs = ["include/mlir/Conversion/ShapeToSCF/ShapeToSCF.h"],
|
||||||
|
includes = ["include"],
|
||||||
|
deps = [
|
||||||
|
":ConversionPassIncGen",
|
||||||
|
":IR",
|
||||||
|
":Pass",
|
||||||
|
":SCFDialect",
|
||||||
|
":Shape",
|
||||||
|
":StandardOps",
|
||||||
|
":Transforms",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
gentbl(
|
gentbl(
|
||||||
name = "ShapeTransformsPassIncGen",
|
name = "ShapeTransformsPassIncGen",
|
||||||
strip_include_prefix = "include",
|
strip_include_prefix = "include",
|
||||||
@ -2613,6 +2632,7 @@ cc_library(
|
|||||||
":Parser",
|
":Parser",
|
||||||
":Pass",
|
":Pass",
|
||||||
":SCFTransforms",
|
":SCFTransforms",
|
||||||
|
":ShapeToSCF",
|
||||||
":ShapeToStandard",
|
":ShapeToStandard",
|
||||||
":ShapeTransforms",
|
":ShapeTransforms",
|
||||||
":StandardOpsTransforms",
|
":StandardOpsTransforms",
|
||||||
@ -2713,6 +2733,7 @@ cc_library(
|
|||||||
":SPIRVPassIncGen",
|
":SPIRVPassIncGen",
|
||||||
":SPIRVToLLVM",
|
":SPIRVToLLVM",
|
||||||
":Shape",
|
":Shape",
|
||||||
|
":ShapeToSCF",
|
||||||
":ShapeToStandard",
|
":ShapeToStandard",
|
||||||
":ShapeTransforms",
|
":ShapeTransforms",
|
||||||
":ShapeTransformsPassIncGen",
|
":ShapeTransformsPassIncGen",
|
||||||
@ -3282,6 +3303,7 @@ cc_library(
|
|||||||
":LinalgTransforms",
|
":LinalgTransforms",
|
||||||
":Pass",
|
":Pass",
|
||||||
":StandardOps",
|
":StandardOps",
|
||||||
|
":StandardOpsTransforms",
|
||||||
":Support",
|
":Support",
|
||||||
":Transforms",
|
":Transforms",
|
||||||
":VectorToLLVM",
|
":VectorToLLVM",
|
||||||
|
1
third_party/mlir/test.BUILD
vendored
1
third_party/mlir/test.BUILD
vendored
@ -166,6 +166,7 @@ cc_library(
|
|||||||
"@llvm-project//mlir:Pass",
|
"@llvm-project//mlir:Pass",
|
||||||
"@llvm-project//mlir:SCFDialect",
|
"@llvm-project//mlir:SCFDialect",
|
||||||
"@llvm-project//mlir:StandardOps",
|
"@llvm-project//mlir:StandardOps",
|
||||||
|
"@llvm-project//mlir:StandardOpsTransforms",
|
||||||
"@llvm-project//mlir:Support",
|
"@llvm-project//mlir:Support",
|
||||||
"@llvm-project//mlir:TargetNVVMIR",
|
"@llvm-project//mlir:TargetNVVMIR",
|
||||||
"@llvm-project//mlir:TargetROCDLIR",
|
"@llvm-project//mlir:TargetROCDLIR",
|
||||||
|
Loading…
Reference in New Issue
Block a user