Skip to content

Commit 36e151a

Browse files
authored
Merge pull request #2211 from gharibian/r2.15
Resolve breakages for 2.15 release.
2 parents 73ba2b9 + 3181292 commit 36e151a

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

WORKSPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ tensorflow_http_archive(
2626
name = "org_tensorflow",
2727
sha256 = "e7b21fb5b68dc01cd82eadb8484ddfb54a0a291bdcd5fa153c58f01eca52baa7",
2828
git_commit = "5b2454e3de818c7ac24cf7fbb8d82aed83a577ca",
29+
patch = "//third_party/tensorflow:tensorflow.patch",
2930
)
3031

3132
# Import all of TensorFlow Serving's external dependencies.

tensorflow_serving/model_servers/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,6 @@ cc_library(
466466
"//tensorflow_serving/servables/tensorflow:session_bundle_config_cc_proto",
467467
"@com_github_grpc_grpc//:grpc++",
468468
"@com_google_absl//absl/log",
469-
"@com_google_absl//absl/strings:string_view",
470469
"@com_google_protobuf//:cc_wkt_protos",
471470
"@org_tensorflow//tensorflow/core:lib",
472471
],

third_party/tensorflow/BUILD

Whitespace-only changes.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/tensorflow/core/grappler/optimizers/inference/BUILD b/tensorflow/core/grappler/optimizers/inference/BUILD
2+
index e96fd3bbc8e..89bc50f4936 100644
3+
--- a/tensorflow/core/grappler/optimizers/inference/BUILD
4+
+++ b/tensorflow/core/grappler/optimizers/inference/BUILD
5+
@@ -19,7 +19,7 @@ tf_proto_library(
6+
name = "batch_op_rewriter_proto",
7+
srcs = ["batch_op_rewriter.proto"],
8+
cc_api_version = 2,
9+
- visibility = DEFAULT_VISIBILITY,
10+
+ visibility = ["//visibility:public"],
11+
)
12+
13+
# copybara:uncomment_begin(google-only)
14+
diff --git a/tensorflow/core/tfrt/graph_executor/BUILD b/tensorflow/core/tfrt/graph_executor/BUILD
15+
index 7cc355fa1b2..e31a61a3b52 100644
16+
--- a/tensorflow/core/tfrt/graph_executor/BUILD
17+
+++ b/tensorflow/core/tfrt/graph_executor/BUILD
18+
@@ -204,6 +204,7 @@ tf_proto_library(
19+
name = "test_config_proto",
20+
testonly = True,
21+
srcs = ["test_config.proto"],
22+
+ visibility = ["//visibility:public"],
23+
)
24+
25+
tf_cc_test(
26+

0 commit comments

Comments
 (0)