STT-tensorflow/tensorflow/python/tf_program/BUILD
A. Unique TensorFlower 034633f23b PY2 removal cleanup
PiperOrigin-RevId: 352106691
Change-Id: I382d53c64f0d29da430b8cb6d2395a2cb281509e
2021-01-15 16:48:57 -08:00

25 lines
559 B
Python

package(licenses = ["notice"])
py_library(
name = "pywrap_tfd",
srcs = ["pywrap_tfd.py"],
srcs_version = "PY3",
deps = [
"//tensorflow/compiler/mlir/python/mlir_wrapper",
],
)
py_library(
name = "mlir_gen",
srcs = ["mlir_gen.py"],
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
":pywrap_tfd",
"//tensorflow/python/autograph/pyct",
"//tensorflow/python/autograph/pyct/static_analysis",
"//tensorflow/python/types",
"@gast_archive//:gast",
],
)