aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/BUILD
diff options
context:
space:
mode:
authorGravatar Guangda Lai <laigd@google.com>2018-09-04 11:49:16 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-04 11:57:00 -0700
commit22e855159462b502dc3af138d254214bd02cf68b (patch)
tree7b7c4c450602fd3a943498fa96e6a158e3044dab /tensorflow/contrib/BUILD
parent7ac5c1ed94eae6e23dc9bc42dc99bf4c500b71a6 (diff)
Fix the tensorrt dependency order in tensorflow/contrib/BUILD.
PiperOrigin-RevId: 211496364
Diffstat (limited to 'tensorflow/contrib/BUILD')
-rw-r--r--tensorflow/contrib/BUILD9
1 files changed, 2 insertions, 7 deletions
diff --git a/tensorflow/contrib/BUILD b/tensorflow/contrib/BUILD
index 66983801bf..798f499870 100644
--- a/tensorflow/contrib/BUILD
+++ b/tensorflow/contrib/BUILD
@@ -20,13 +20,7 @@ py_library(
),
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
- deps = if_not_windows([
- # TODO(aaroey): tensorrt dependency has to appear before tflite so the
- # build can resolve its flatbuffers symbols within the tensorrt library.
- # This is an issue with the tensorrt static library and will be fixed by
- # the next tensorrt release, so fix the order here after that.
- "//tensorflow/contrib/tensorrt:init_py", # doesn't compile on windows
- ]) + [
+ deps = [
"//tensorflow/contrib/all_reduce",
"//tensorflow/contrib/batching:batch_py",
"//tensorflow/contrib/bayesflow:bayesflow_py",
@@ -135,6 +129,7 @@ py_library(
]) + if_not_windows([
"//tensorflow/contrib/bigtable", # depends on bigtable
"//tensorflow/contrib/cloud:cloud_py", # doesn't compile on Windows
+ "//tensorflow/contrib/tensorrt:init_py", # doesn't compile on windows
"//tensorflow/contrib/ffmpeg:ffmpeg_ops_py",
]),
)