BUILD cleanup in tensorflow/compiler/...

PiperOrigin-RevId: 161679855
This commit is contained in:
A. Unique TensorFlower 2017-07-12 10:10:55 -07:00 committed by TensorFlower Gardener
parent 576c7b1ec8
commit de546d0669
4 changed files with 8 additions and 6 deletions

View File

@ -42,6 +42,7 @@ py_library(
"//tensorflow/python:platform",
"//tensorflow/python:random_seed",
"//tensorflow/python:variables",
"//third_party/py/numpy",
],
)

View File

@ -857,7 +857,6 @@ cc_library(
":heap_simulator",
":hlo",
":hlo_ordering",
":hlo_proto",
":logical_buffer",
":tuple_points_to_analysis",
"//tensorflow/compiler/xla:shape_util",
@ -1895,10 +1894,6 @@ cc_library(
":buffer_liveness",
":hlo",
":hlo_pass",
"//tensorflow/compiler/xla:status_macros",
"//tensorflow/compiler/xla:statusor",
"//tensorflow/compiler/xla:types",
"//tensorflow/compiler/xla:util",
"//tensorflow/core:lib",
],
)

View File

@ -227,6 +227,7 @@ cc_library(
"//tensorflow/compiler/xla:util",
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/compiler/xla/service:hlo",
"//tensorflow/compiler/xla/service:hlo_module_config",
"//tensorflow/compiler/xla/service/llvm_ir:ir_array",
"//tensorflow/compiler/xla/service/llvm_ir:llvm_loop",
"//tensorflow/compiler/xla/service/llvm_ir:llvm_util",
@ -447,6 +448,7 @@ cc_library(
":ir_emission_utils",
":shape_partition",
"//tensorflow/compiler/xla:types",
"//tensorflow/compiler/xla:util",
"//tensorflow/compiler/xla/service:hlo",
"//tensorflow/compiler/xla/service:hlo_cost_analysis",
"//tensorflow/compiler/xla/service:hlo_pass",
@ -531,7 +533,7 @@ cc_library(
srcs = ["shape_partition.cc"],
hdrs = ["shape_partition.h"],
deps = [
"//tensorflow/compiler/xla/service:hlo",
"//tensorflow/compiler/xla:shape_util",
],
)

View File

@ -726,6 +726,7 @@ xla_test(
srcs = ["batch_normalization_test.cc"],
shard_count = 40,
deps = [
":test_utils",
"//tensorflow/compiler/xla:array2d",
"//tensorflow/compiler/xla:array4d",
"//tensorflow/compiler/xla:literal_util",
@ -733,7 +734,9 @@ xla_test(
"//tensorflow/compiler/xla:shape_util",
"//tensorflow/compiler/xla:status_macros",
"//tensorflow/compiler/xla:statusor",
"//tensorflow/compiler/xla:test",
"//tensorflow/compiler/xla:test_helpers",
"//tensorflow/compiler/xla:util",
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/compiler/xla/client:computation",
"//tensorflow/compiler/xla/client:computation_builder",
@ -741,6 +744,7 @@ xla_test(
"//tensorflow/compiler/xla/client:local_client",
"//tensorflow/compiler/xla/client/lib:arithmetic",
"//tensorflow/compiler/xla/legacy_flags:debug_options_flags",
"//tensorflow/compiler/xla/service:hlo",
"//tensorflow/compiler/xla/tests:client_library_test_base",
"//tensorflow/compiler/xla/tests:hlo_test_base",
"//tensorflow/compiler/xla/tests:literal_test_util",