Skip to content

Commit

Permalink
Correct BUILD dependency order
Browse files Browse the repository at this point in the history
  • Loading branch information
MattConley committed Apr 12, 2019
1 parent 490dfd8 commit 0f3d3df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2785,8 +2785,8 @@ py_library(
srcs = ["training/mixed_precision/experimental/loss_scale.py"],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:framework",
":keras_lib",
"//tensorflow/python:framework",
"@absl_py//absl/testing:parameterized",
],
)
Expand All @@ -2807,10 +2807,10 @@ py_test(
srcs = ["training/mixed_precision/experimental/loss_scale_optimizer_test.py"],
deps = [
":loss_scale_optimizer",
"//tensorflow/python/keras/mixed_precision/experimental:test_util",
"//tensorflow/python:client_testlib",
"//tensorflow/python/distribute:mirrored_strategy",
"//tensorflow/python/distribute:one_device_strategy",
"//tensorflow/python/keras/mixed_precision/experimental:test_util",
"@absl_py//absl/testing:parameterized",
],
)
Expand Down

0 comments on commit 0f3d3df

Please sign in to comment.