STT-tensorflow/tensorflow/python/tf_program/BUILD
TensorFlower Gardener 7bffd6c498 Merge pull request #39330 from shraiysh:master
PiperOrigin-RevId: 311248675
Change-Id: Idf82ebbb155efec1624565eb13bd67573b68037a
2020-05-12 19:23:12 -07:00

23 lines
507 B
Python

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