Automated rollback of commit c044803bcd

PiperOrigin-RevId: 293937412
Change-Id: I2b3c38abeafc95d389f10332054afe025bdbb455
This commit is contained in:
Eugene Brevdo 2020-02-07 18:36:06 -08:00 committed by TensorFlower Gardener
parent 13f0092fa3
commit a7f8d6030c
3 changed files with 1 additions and 19 deletions

View File

@ -8,12 +8,3 @@
*nsync_*
*stream_executor*
*xla*
# Though it may seem unsafe to export grpc, any .so files that rely on gRPC
# MUST do it through tensorflow's version, because gRPC uses link-time
# object registration, and if they hard link their own gRPC dependencies
# then at load time you get a segfault due to registration collissions.
# As a result, any dynamic libraries relying on gRPC must build with gRPC
# deps in header-only mode, and rely on tensorflow's symbol exports at
# link-time.
*grpc*

View File

@ -9,14 +9,6 @@ tensorflow {
*nsync_*;
*stream_executor*;
*xla*;
# Though it may seem unsafe to export grpc, any .so files that rely on gRPC
# MUST do it through tensorflow's version, because gRPC uses link-time
# object registration, and if they hard link their own gRPC dependencies
# then at load time you get a segfault due to registration collissions.
# As a result, any dynamic libraries relying on gRPC must build with gRPC
# deps in header-only mode, and rely on tensorflow's symbol exports at
# link-time.
*grpc*;
local:
*;
};

View File

@ -71,8 +71,7 @@ INCLUDE_RE = re.compile(r"^(TF_\w*)$|"
r"tensorflow::|"
r"toco::|"
r"functor::|"
r"perftools::gputools|"
r"grpc::")
r"perftools::gputools")
# We want to identify data members explicitly in the DEF file, so that no one
# can implicitly link against the DLL if they use one of the variables exported