aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/BUILD')
-rw-r--r--tensorflow/compiler/xla/BUILD45
1 files changed, 35 insertions, 10 deletions
diff --git a/tensorflow/compiler/xla/BUILD b/tensorflow/compiler/xla/BUILD
index 03e542855b..f1c383fd9e 100644
--- a/tensorflow/compiler/xla/BUILD
+++ b/tensorflow/compiler/xla/BUILD
@@ -254,6 +254,7 @@ tf_cc_test(
":types",
":util",
":xla_data_proto",
+ "//tensorflow/core:lib",
"//tensorflow/core:test_main",
],
)
@@ -281,9 +282,9 @@ tf_cc_test(
)
cc_library(
- name = "literal_util",
- srcs = ["literal_util.cc"],
- hdrs = ["literal_util.h"],
+ name = "literal",
+ srcs = ["literal.cc"],
+ hdrs = ["literal.h"],
visibility = ["//visibility:public"],
deps = [
":array2d",
@@ -300,11 +301,12 @@ cc_library(
)
tf_cc_test(
- name = "literal_util_test",
- srcs = ["literal_util_test.cc"],
+ name = "literal_test",
+ srcs = ["literal_test.cc"],
deps = [
":array3d",
":array4d",
+ ":literal",
":literal_util",
":shape_util",
":test",
@@ -317,6 +319,26 @@ tf_cc_test(
)
cc_library(
+ name = "literal_util",
+ srcs = ["literal_util.cc"],
+ hdrs = ["literal_util.h"],
+ visibility = ["//visibility:public"],
+ deps = [
+ ":array2d",
+ ":array3d",
+ ":array4d",
+ ":literal",
+ ":shape_util",
+ ":sparse_index_array",
+ ":status_macros",
+ ":types",
+ ":util",
+ ":xla_data_proto",
+ "//tensorflow/core:lib",
+ ],
+)
+
+cc_library(
name = "error_spec",
hdrs = ["error_spec.h"],
)
@@ -327,6 +349,7 @@ cc_library(
hdrs = ["literal_comparison.h"],
deps = [
":error_spec",
+ ":literal",
":literal_util",
":util",
"//tensorflow/core:lib",
@@ -458,7 +481,7 @@ cc_library(
hdrs = ["packed_literal_reader.h"],
visibility = [":internal"],
deps = [
- ":literal_util",
+ ":literal",
":shape_util",
":status_macros",
":statusor",
@@ -489,7 +512,7 @@ cc_library(
hdrs = ["text_literal_reader.h"],
visibility = [":internal"],
deps = [
- ":literal_util",
+ ":literal",
":shape_util",
":status_macros",
":statusor",
@@ -505,7 +528,7 @@ tf_cc_test(
name = "text_literal_reader_test",
srcs = ["text_literal_reader_test.cc"],
deps = [
- ":literal_util",
+ ":literal",
":shape_util",
":test",
":text_literal_reader",
@@ -522,7 +545,7 @@ cc_library(
hdrs = ["text_literal_writer.h"],
visibility = [":internal"],
deps = [
- ":literal_util",
+ ":literal",
":shape_util",
":status_macros",
":types",
@@ -535,6 +558,7 @@ tf_cc_test(
name = "text_literal_writer_test",
srcs = ["text_literal_writer_test.cc"],
deps = [
+ ":literal",
":literal_util",
":test",
":test_helpers",
@@ -607,6 +631,7 @@ cc_library(
":array2d",
":array3d",
":array4d",
+ ":literal_util",
":util",
":window_util",
":xla_data_proto",
@@ -627,7 +652,7 @@ tf_cc_test(
":array2d",
":array3d",
":array4d",
- ":literal_util",
+ ":literal",
":reference_util",
":test",
":util",