PiperOrigin-RevId: 316608084
Change-Id: I6df721c782e850371267e6a2fba7eda96d3b1610
This commit is contained in:
A. Unique TensorFlower 2020-06-15 21:21:15 -07:00 committed by TensorFlower Gardener
parent 6166444602
commit 7ee9571a8e
2 changed files with 23 additions and 0 deletions

View File

@ -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(
name = "ShapeTransformsPassIncGen",
strip_include_prefix = "include",
@ -2613,6 +2632,7 @@ cc_library(
":Parser",
":Pass",
":SCFTransforms",
":ShapeToSCF",
":ShapeToStandard",
":ShapeTransforms",
":StandardOpsTransforms",
@ -2713,6 +2733,7 @@ cc_library(
":SPIRVPassIncGen",
":SPIRVToLLVM",
":Shape",
":ShapeToSCF",
":ShapeToStandard",
":ShapeTransforms",
":ShapeTransformsPassIncGen",
@ -3282,6 +3303,7 @@ cc_library(
":LinalgTransforms",
":Pass",
":StandardOps",
":StandardOpsTransforms",
":Support",
":Transforms",
":VectorToLLVM",

View File

@ -166,6 +166,7 @@ cc_library(
"@llvm-project//mlir:Pass",
"@llvm-project//mlir:SCFDialect",
"@llvm-project//mlir:StandardOps",
"@llvm-project//mlir:StandardOpsTransforms",
"@llvm-project//mlir:Support",
"@llvm-project//mlir:TargetNVVMIR",
"@llvm-project//mlir:TargetROCDLIR",