Upgrade gRPC version used in OSS Tensorflow

PiperOrigin-RevId: 234225397
This commit is contained in:
A. Unique TensorFlower 2019-02-15 15:34:13 -08:00 committed by TensorFlower Gardener
parent 3c5d487e7c
commit 158912ec85
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ include (ExternalProject)
set(GRPC_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc/include) set(GRPC_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc/include)
set(GRPC_URL https://github.com/grpc/grpc.git) set(GRPC_URL https://github.com/grpc/grpc.git)
set(GRPC_BUILD ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc) set(GRPC_BUILD ${CMAKE_CURRENT_BINARY_DIR}/grpc/src/grpc)
set(GRPC_TAG d0d93bdab84f2befb425e9a991d17dc78c195c6d) set(GRPC_TAG 3dacd1afc451803fbbc4d01c53cbaf026aa9d06b)
if(WIN32) if(WIN32)
# We use unsecure gRPC because boringssl does not build on windows # We use unsecure gRPC because boringssl does not build on windows

View File

@ -478,12 +478,12 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
# WARNING: make sure ncteisen@ and vpai@ are cc-ed on any CL to change the below rule # WARNING: make sure ncteisen@ and vpai@ are cc-ed on any CL to change the below rule
tf_http_archive( tf_http_archive(
name = "grpc", name = "grpc",
sha256 = "0f4848edb44486304c88e3660f524c767ff4981835051fdcfdbb76883300d954", sha256 = "dd88f70334f60ca673d461b4fe645a65618dd75e288f5b0620e4d5ef13153904",
strip_prefix = "grpc-d0d93bdab84f2befb425e9a991d17dc78c195c6d", strip_prefix = "grpc-3dacd1afc451803fbbc4d01c53cbaf026aa9d06b",
system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"), system_build_file = clean_dep("//third_party/systemlibs:grpc.BUILD"),
urls = [ urls = [
"https://mirror.bazel.build/github.com/grpc/grpc/archive/d0d93bdab84f2befb425e9a991d17dc78c195c6d.tar.gz", "https://mirror.bazel.build/github.com/grpc/grpc/archive/3dacd1afc451803fbbc4d01c53cbaf026aa9d06b.tar.gz",
"https://github.com/grpc/grpc/archive/d0d93bdab84f2befb425e9a991d17dc78c195c6d.tar.gz", "https://github.com/grpc/grpc/archive/3dacd1afc451803fbbc4d01c53cbaf026aa9d06b.tar.gz",
], ],
) )