BUILD cleanup in tensorflow/compiler/...
PiperOrigin-RevId: 161679855
This commit is contained in:
parent
576c7b1ec8
commit
de546d0669
@ -42,6 +42,7 @@ py_library(
|
|||||||
"//tensorflow/python:platform",
|
"//tensorflow/python:platform",
|
||||||
"//tensorflow/python:random_seed",
|
"//tensorflow/python:random_seed",
|
||||||
"//tensorflow/python:variables",
|
"//tensorflow/python:variables",
|
||||||
|
"//third_party/py/numpy",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -857,7 +857,6 @@ cc_library(
|
|||||||
":heap_simulator",
|
":heap_simulator",
|
||||||
":hlo",
|
":hlo",
|
||||||
":hlo_ordering",
|
":hlo_ordering",
|
||||||
":hlo_proto",
|
|
||||||
":logical_buffer",
|
":logical_buffer",
|
||||||
":tuple_points_to_analysis",
|
":tuple_points_to_analysis",
|
||||||
"//tensorflow/compiler/xla:shape_util",
|
"//tensorflow/compiler/xla:shape_util",
|
||||||
@ -1895,10 +1894,6 @@ cc_library(
|
|||||||
":buffer_liveness",
|
":buffer_liveness",
|
||||||
":hlo",
|
":hlo",
|
||||||
":hlo_pass",
|
":hlo_pass",
|
||||||
"//tensorflow/compiler/xla:status_macros",
|
|
||||||
"//tensorflow/compiler/xla:statusor",
|
|
||||||
"//tensorflow/compiler/xla:types",
|
|
||||||
"//tensorflow/compiler/xla:util",
|
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -227,6 +227,7 @@ cc_library(
|
|||||||
"//tensorflow/compiler/xla:util",
|
"//tensorflow/compiler/xla:util",
|
||||||
"//tensorflow/compiler/xla:xla_data_proto",
|
"//tensorflow/compiler/xla:xla_data_proto",
|
||||||
"//tensorflow/compiler/xla/service:hlo",
|
"//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:ir_array",
|
||||||
"//tensorflow/compiler/xla/service/llvm_ir:llvm_loop",
|
"//tensorflow/compiler/xla/service/llvm_ir:llvm_loop",
|
||||||
"//tensorflow/compiler/xla/service/llvm_ir:llvm_util",
|
"//tensorflow/compiler/xla/service/llvm_ir:llvm_util",
|
||||||
@ -447,6 +448,7 @@ cc_library(
|
|||||||
":ir_emission_utils",
|
":ir_emission_utils",
|
||||||
":shape_partition",
|
":shape_partition",
|
||||||
"//tensorflow/compiler/xla:types",
|
"//tensorflow/compiler/xla:types",
|
||||||
|
"//tensorflow/compiler/xla:util",
|
||||||
"//tensorflow/compiler/xla/service:hlo",
|
"//tensorflow/compiler/xla/service:hlo",
|
||||||
"//tensorflow/compiler/xla/service:hlo_cost_analysis",
|
"//tensorflow/compiler/xla/service:hlo_cost_analysis",
|
||||||
"//tensorflow/compiler/xla/service:hlo_pass",
|
"//tensorflow/compiler/xla/service:hlo_pass",
|
||||||
@ -531,7 +533,7 @@ cc_library(
|
|||||||
srcs = ["shape_partition.cc"],
|
srcs = ["shape_partition.cc"],
|
||||||
hdrs = ["shape_partition.h"],
|
hdrs = ["shape_partition.h"],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/compiler/xla/service:hlo",
|
"//tensorflow/compiler/xla:shape_util",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -726,6 +726,7 @@ xla_test(
|
|||||||
srcs = ["batch_normalization_test.cc"],
|
srcs = ["batch_normalization_test.cc"],
|
||||||
shard_count = 40,
|
shard_count = 40,
|
||||||
deps = [
|
deps = [
|
||||||
|
":test_utils",
|
||||||
"//tensorflow/compiler/xla:array2d",
|
"//tensorflow/compiler/xla:array2d",
|
||||||
"//tensorflow/compiler/xla:array4d",
|
"//tensorflow/compiler/xla:array4d",
|
||||||
"//tensorflow/compiler/xla:literal_util",
|
"//tensorflow/compiler/xla:literal_util",
|
||||||
@ -733,7 +734,9 @@ xla_test(
|
|||||||
"//tensorflow/compiler/xla:shape_util",
|
"//tensorflow/compiler/xla:shape_util",
|
||||||
"//tensorflow/compiler/xla:status_macros",
|
"//tensorflow/compiler/xla:status_macros",
|
||||||
"//tensorflow/compiler/xla:statusor",
|
"//tensorflow/compiler/xla:statusor",
|
||||||
|
"//tensorflow/compiler/xla:test",
|
||||||
"//tensorflow/compiler/xla:test_helpers",
|
"//tensorflow/compiler/xla:test_helpers",
|
||||||
|
"//tensorflow/compiler/xla:util",
|
||||||
"//tensorflow/compiler/xla:xla_data_proto",
|
"//tensorflow/compiler/xla:xla_data_proto",
|
||||||
"//tensorflow/compiler/xla/client:computation",
|
"//tensorflow/compiler/xla/client:computation",
|
||||||
"//tensorflow/compiler/xla/client:computation_builder",
|
"//tensorflow/compiler/xla/client:computation_builder",
|
||||||
@ -741,6 +744,7 @@ xla_test(
|
|||||||
"//tensorflow/compiler/xla/client:local_client",
|
"//tensorflow/compiler/xla/client:local_client",
|
||||||
"//tensorflow/compiler/xla/client/lib:arithmetic",
|
"//tensorflow/compiler/xla/client/lib:arithmetic",
|
||||||
"//tensorflow/compiler/xla/legacy_flags:debug_options_flags",
|
"//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:client_library_test_base",
|
||||||
"//tensorflow/compiler/xla/tests:hlo_test_base",
|
"//tensorflow/compiler/xla/tests:hlo_test_base",
|
||||||
"//tensorflow/compiler/xla/tests:literal_test_util",
|
"//tensorflow/compiler/xla/tests:literal_test_util",
|
||||||
|
Loading…
Reference in New Issue
Block a user