Removed the unnecessary deps of Keras in control_flow_v2.

All the rest of the deps changes are fixing for failed tests that are caused by the removal of keras deps.

PiperOrigin-RevId: 336153836
Change-Id: I3377964d811c09e86135f20b5618d3c227abe0d0
This commit is contained in:
Scott Zhu 2020-10-08 13:32:05 -07:00 committed by TensorFlower Gardener
parent 84202f860f
commit 66a6e090aa
4 changed files with 5 additions and 2 deletions

View File

@ -1485,6 +1485,7 @@ tf_xla_py_test(
"//tensorflow/compiler/tf2xla/python:xla",
"//tensorflow/python:array_ops",
"//tensorflow/python:framework",
"//tensorflow/python:image_ops",
"//tensorflow/python:platform_test",
"//tensorflow/python:training",
],

View File

@ -3633,7 +3633,6 @@ py_library(
"//tensorflow/python/distribute:distribute_lib",
"//tensorflow/python/eager:context",
"//tensorflow/python/eager:function",
"//tensorflow/python/keras/engine:base_layer_utils",
],
)
@ -4445,6 +4444,7 @@ py_library(
":math_ops",
":random_ops_gen",
":random_seed",
":stateless_random_ops",
],
)
@ -4486,10 +4486,10 @@ py_library(
srcs = ["ops/stateless_random_ops.py"],
srcs_version = "PY2AND3",
deps = [
":array_ops",
":dtypes",
":framework_ops",
":math_ops",
":random_ops",
":stateless_random_ops_gen",
":stateless_random_ops_v2_gen",
],

View File

@ -875,6 +875,7 @@ py_library(
srcs = ["multi_worker_test_base.py"],
srcs_version = "PY2AND3",
deps = [
":distribute_coordinator",
":multi_process_runner",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:client_testlib",

View File

@ -509,6 +509,7 @@ pytype_library(
srcs = ["tpu_embedding_v2_utils.py"],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:init_ops_v2",
"//tensorflow/python:variable_scope",
"//tensorflow/python/distribute:device_util",
"//tensorflow/python/distribute:sharded_variable",