STT-tensorflow/tensorflow/python/compiler/BUILD
Guangda Lai 7eee3d7db6 Export tftrt python symbols.
PiperOrigin-RevId: 279160795
Change-Id: I84a5fed8888d06a877587cd9dd8d6b3eddbdca7d
2019-11-07 14:07:32 -08:00

25 lines
623 B
Python

# Description:
# Python APIs for various Tensorflow backends.
load("//tensorflow:tensorflow.bzl", "if_windows")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_library(
name = "compiler",
srcs = ["__init__.py"],
srcs_version = "PY2AND3",
deps = if_windows(
["//tensorflow/python/compiler/tensorrt:trt_convert_windows"],
otherwise = ["//tensorflow/python/compiler/tensorrt:init_py"],
) + [
"//tensorflow/python/compiler/mlir",
"//tensorflow/python/compiler/xla:compiler_py",
],
)