Include C env API into part of the libtensorflow_framework.so

This commit is contained in:
Võ Văn Nghĩa 2021-01-09 09:53:27 +07:00
parent beff361b55
commit 50a8abac12
4 changed files with 10 additions and 5 deletions

View File

@ -736,6 +736,7 @@ tf_cc_shared_object(
deps = [
"//tensorflow/c/experimental/filesystem:filesystem_interface",
"//tensorflow/c/experimental/stream_executor:stream_executor",
"//tensorflow/c:env",
"//tensorflow/c:kernels",
"//tensorflow/c:logging",
"//tensorflow/c:ops_hdrs",

View File

@ -505,11 +505,13 @@ tf_cuda_library(
"//tensorflow/core:framework",
],
}) + [
":c_api",
":c_api_macros",
":tf_status",
":tf_status_helper",
":c_api_internal",
":tf_file_statistics",
"//tensorflow/core:lib",
"//tensorflow/core/platform:env",
"//tensorflow/core/platform:path",
"//tensorflow/core/platform:types",
],
)

View File

@ -15,7 +15,8 @@ limitations under the License.
#include "tensorflow/c/env.h"
#include "tensorflow/c/c_api_internal.h"
#include "tensorflow/c/c_api_macros.h"
#include "tensorflow/c/tf_status.h"
#include "tensorflow/c/tf_status_helper.h"
#include "tensorflow/core/platform/env.h"
#include "tensorflow/core/platform/path.h"

View File

@ -20,8 +20,9 @@ limitations under the License.
#include <stddef.h>
#include <stdint.h>
#include "tensorflow/c/c_api.h"
#include "tensorflow/c/c_api_macros.h"
#include "tensorflow/c/tf_file_statistics.h"
#include "tensorflow/c/tf_status.h"
// --------------------------------------------------------------------------
// C API for tensorflow::Env.