Splits out a shared object (//tensorflow/libtensorflow_framework.so) with core TensorFlow functionality but neither ops nor kernels. This object does include registries for ops, kernels, filesystems, etc. The expectation is that shared objects containing custom ops will have a runtime dependency on this framework shared object: TensorFlow will load the custom op shared object, and the custom op shared object will use the symbols from the framework shared object to register its ops/kernels/etc. rather than (as before this change) relying on those symbols being in the global symbol table. In this mode, TensorFlow artifacts (_pywrap_tensorflow.so for Python, libtensorflow.so for the C API; currently excluding Android artifacts) will depend on the framework shared object, which will be packaged with the Python pip package and other language distributions. This means that custom ops targeting the framework shared object will work in any language (C++, Java, Go; previously custom ops in these languages required custom Bazel builds). Adds a config option which reproduces the old behavior (--config=monolithic), which for Python means building a monolithic pywrap_tensorflow shared object and loading its symbols into the global symbol table (with RTLD_GLOBAL). As before, there will be no extra-Bazel custom op support for other languages when compiling in this mode. Does not change behavior on Windows; the cmake build is still monolithic. Requires using tf_cc_binary, tf_cc_test, and (rarely) tf_cc_shared_object rules to link in the framework shared object when adding new TensorFlow build rules. PiperOrigin-RevId: 169572746
53 lines
1.8 KiB
Bash
Executable File
53 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
|
|
set -ex
|
|
|
|
# Sanity test for the package C-library archive.
|
|
# - Unarchive
|
|
# - Compile a trivial C file that uses the archive
|
|
# - Run it
|
|
|
|
# Tools needed: A C-compiler and tar
|
|
CC="${CC}"
|
|
TAR="${TAR}"
|
|
|
|
[ -z "${CC}" ] && CC="/usr/bin/gcc"
|
|
[ -z "${TAR}" ] && TAR="tar"
|
|
|
|
# bazel tests run with ${PWD} set to the root of the bazel workspace
|
|
TARFILE="${PWD}/tensorflow/tools/lib_package/libtensorflow.tar.gz"
|
|
CFILE="${PWD}/tensorflow/tools/lib_package/libtensorflow_test.c"
|
|
|
|
cd ${TEST_TMPDIR}
|
|
|
|
# Extract the archive into tensorflow/
|
|
mkdir tensorflow
|
|
${TAR} -xzf ${TARFILE} -Ctensorflow
|
|
|
|
# Compile the test .c file. Assumes with_framework_lib=True.
|
|
${CC} ${CFILE} -Itensorflow/include -Ltensorflow/lib\
|
|
-ltensorflow_framework -ltensorflow -oa.out
|
|
|
|
# Execute it, with the shared library available.
|
|
# DYLD_LIBRARY_PATH is used on OS X, LD_LIBRARY_PATH on Linux.
|
|
#
|
|
# The tests for GPU require CUDA libraries to be accessible, which
|
|
# are in DYLD_LIBRARY_PATH in the test harness for OS X.
|
|
export DYLD_LIBRARY_PATH=tensorflow/lib:${DYLD_LIBRARY_PATH}
|
|
export LD_LIBRARY_PATH=tensorflow/lib:${LD_LIBRARY_PATH}
|
|
./a.out
|