Internal cleanup to remove a difference from the code on github.

PiperOrigin-RevId: 197817738
This commit is contained in:
A. Unique TensorFlower 2018-05-23 17:26:04 -07:00 committed by TensorFlower Gardener
parent 21e6addc0e
commit 437015dba0
14 changed files with 29 additions and 26 deletions

View File

@ -15,7 +15,7 @@ cc_library(
"//tensorflow/contrib/lite/kernels:builtin_ops", "//tensorflow/contrib/lite/kernels:builtin_ops",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/python:numpy_lib", "//tensorflow/python:numpy_lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
"@com_google_absl//absl/memory", "@com_google_absl//absl/memory",
], ],
) )
@ -27,6 +27,6 @@ tf_py_wrap_cc(
], ],
deps = [ deps = [
":interpreter_wrapper_lib", ":interpreter_wrapper_lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )

View File

@ -15,7 +15,7 @@ cc_library(
"//tensorflow/contrib/lite/toco:toco_port", "//tensorflow/contrib/lite/toco:toco_port",
"//tensorflow/contrib/lite/toco:toco_tooling", "//tensorflow/contrib/lite/toco:toco_tooling",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -26,7 +26,7 @@ tf_py_wrap_cc(
":toco_python_api", ":toco_python_api",
"//tensorflow/contrib/lite/toco:model_flags_proto_cc", "//tensorflow/contrib/lite/toco:model_flags_proto_cc",
"//tensorflow/contrib/lite/toco:toco_flags_proto_cc", "//tensorflow/contrib/lite/toco:toco_flags_proto_cc",
"//util/python:python_headers", "//third_party/python_runtime:headers",
"@com_google_absl//absl/strings", "@com_google_absl//absl/strings",
], ],
) )

View File

@ -15,8 +15,8 @@ limitations under the License.
#ifndef _THIRD_PARTY_TENSORFLOW_CONTRIB_LITE_TOCO_PYTHON_TOCO_PYTHON_API_H_ #ifndef _THIRD_PARTY_TENSORFLOW_CONTRIB_LITE_TOCO_PYTHON_TOCO_PYTHON_API_H_
#define _THIRD_PARTY_TENSORFLOW_CONTRIB_LITE_TOCO_PYTHON_TOCO_PYTHON_API_H_ #define _THIRD_PARTY_TENSORFLOW_CONTRIB_LITE_TOCO_PYTHON_TOCO_PYTHON_API_H_
#include <string>
#include <Python.h> #include <Python.h>
#include <string>
namespace toco { namespace toco {

View File

@ -190,7 +190,7 @@ tf_py_wrap_cc(
":trt_conversion", ":trt_conversion",
":trt_engine_op_kernel", ":trt_engine_op_kernel",
"//tensorflow/core:framework_lite", "//tensorflow/core:framework_lite",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )

View File

@ -82,7 +82,7 @@ def pyx_library(
native.cc_binary( native.cc_binary(
name=shared_object_name, name=shared_object_name,
srcs=[stem + ".cpp"], srcs=[stem + ".cpp"],
deps=deps + ["//util/python:python_headers"], deps=deps + ["//third_party/python_runtime:headers"],
linkshared = 1, linkshared = 1,
) )
shared_objects.append(shared_object_name) shared_objects.append(shared_object_name)

View File

@ -256,7 +256,7 @@ cc_library(
"//tensorflow/core:framework", "//tensorflow/core:framework",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//third_party/py/numpy:headers", "//third_party/py/numpy:headers",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -269,7 +269,7 @@ cc_library(
":safe_ptr", ":safe_ptr",
"//tensorflow/core:framework", "//tensorflow/core:framework",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -293,7 +293,7 @@ cc_library(
deps = [ deps = [
"//tensorflow/c:c_api", "//tensorflow/c:c_api",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -316,7 +316,7 @@ cc_library(
":safe_ptr", ":safe_ptr",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/core:lib_internal", "//tensorflow/core:lib_internal",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -338,7 +338,7 @@ cc_library(
"//tensorflow/core:script_ops_op_lib", "//tensorflow/core:script_ops_op_lib",
"//tensorflow/python/eager:pywrap_tfe_lib", "//tensorflow/python/eager:pywrap_tfe_lib",
"//third_party/py/numpy:headers", "//third_party/py/numpy:headers",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -349,7 +349,7 @@ cc_library(
deps = [ deps = [
"//tensorflow/c:c_api", "//tensorflow/c:c_api",
"//tensorflow/c/eager:c_api", "//tensorflow/c/eager:c_api",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -379,7 +379,7 @@ cc_library(
":safe_ptr", ":safe_ptr",
"//tensorflow/core:framework", "//tensorflow/core:framework",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -390,7 +390,7 @@ cc_library(
deps = [ deps = [
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/core:script_ops_op_lib", "//tensorflow/core:script_ops_op_lib",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -3437,7 +3437,7 @@ tf_cuda_library(
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc", "//tensorflow/core:protos_all_cc",
"//third_party/py/numpy:headers", "//third_party/py/numpy:headers",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )
@ -3508,6 +3508,7 @@ tf_py_wrap_cc(
":py_record_writer_lib", ":py_record_writer_lib",
":python_op_gen", ":python_op_gen",
":tf_session_helper", ":tf_session_helper",
"//third_party/python_runtime:headers",
"//tensorflow/c:c_api", "//tensorflow/c:c_api",
"//tensorflow/c:checkpoint_reader", "//tensorflow/c:checkpoint_reader",
"//tensorflow/c:python_api", "//tensorflow/c:python_api",
@ -3530,7 +3531,6 @@ tf_py_wrap_cc(
"//tensorflow/core/profiler/internal:print_model_analysis", "//tensorflow/core/profiler/internal:print_model_analysis",
"//tensorflow/tools/graph_transforms:transform_graph_lib", "//tensorflow/tools/graph_transforms:transform_graph_lib",
"//tensorflow/python/eager:pywrap_tfe_lib", "//tensorflow/python/eager:pywrap_tfe_lib",
"//util/python:python_headers",
] + (tf_additional_lib_deps() + ] + (tf_additional_lib_deps() +
tf_additional_plugin_deps() + tf_additional_plugin_deps() +
tf_additional_verbs_deps() + tf_additional_verbs_deps() +

View File

@ -31,7 +31,7 @@ cc_library(
"//tensorflow/python:numpy_lib", "//tensorflow/python:numpy_lib",
"//tensorflow/python:py_seq_tensor", "//tensorflow/python:py_seq_tensor",
"//tensorflow/python:safe_ptr", "//tensorflow/python:safe_ptr",
"//util/python:python_headers", "//third_party/python_runtime:headers",
], ],
) )

View File

@ -16,10 +16,11 @@ limitations under the License.
#ifndef TENSORFLOW_PYTHON_EAGER_PYWRAP_TFE_H_ #ifndef TENSORFLOW_PYTHON_EAGER_PYWRAP_TFE_H_
#define TENSORFLOW_PYTHON_EAGER_PYWRAP_TFE_H_ #define TENSORFLOW_PYTHON_EAGER_PYWRAP_TFE_H_
#include <Python.h>
#include "tensorflow/c/eager/c_api.h" #include "tensorflow/c/eager/c_api.h"
#include "tensorflow/core/lib/core/status.h" #include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/inlined_vector.h" #include "tensorflow/core/lib/gtl/inlined_vector.h"
#include <Python.h>
typedef tensorflow::gtl::InlinedVector<TFE_TensorHandle*, 4> typedef tensorflow::gtl::InlinedVector<TFE_TensorHandle*, 4>
TFE_InputTensorHandles; TFE_InputTensorHandles;

View File

@ -13,10 +13,10 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
==============================================================================*/ ==============================================================================*/
#include "tensorflow/python/lib/core/py_exception_registry.h"
#include <Python.h> #include <Python.h>
#include "tensorflow/python/lib/core/py_exception_registry.h"
namespace tensorflow { namespace tensorflow {
PyExceptionRegistry* PyExceptionRegistry::singleton_ = nullptr; PyExceptionRegistry* PyExceptionRegistry::singleton_ = nullptr;

View File

@ -17,6 +17,8 @@ limitations under the License.
#include <array> #include <array>
#include <Python.h>
#include "numpy/arrayobject.h" #include "numpy/arrayobject.h"
#include "tensorflow/c/eager/c_api.h" #include "tensorflow/c/eager/c_api.h"
#include "tensorflow/c/eager/c_api_internal.h" #include "tensorflow/c/eager/c_api_internal.h"
@ -33,8 +35,6 @@ limitations under the License.
#include "tensorflow/python/lib/core/py_util.h" #include "tensorflow/python/lib/core/py_util.h"
#include "tensorflow/python/lib/core/safe_ptr.h" #include "tensorflow/python/lib/core/safe_ptr.h"
#include <Python.h>
namespace tensorflow { namespace tensorflow {
namespace { namespace {

View File

@ -15,9 +15,10 @@ limitations under the License.
#include "tensorflow/python/lib/core/py_util.h" #include "tensorflow/python/lib/core/py_util.h"
#include <Python.h>
#include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/lib/strings/strcat.h"
#include <Python.h>
namespace tensorflow { namespace tensorflow {
namespace { namespace {

View File

@ -19,6 +19,7 @@ limitations under the License.
#include <memory> #include <memory>
#include <Python.h> #include <Python.h>
#include "tensorflow/c/c_api.h" #include "tensorflow/c/c_api.h"
#include "tensorflow/c/eager/c_api.h" #include "tensorflow/c/eager/c_api.h"

View File

@ -821,7 +821,7 @@ def tf_workspace(path_prefix="", tf_repo_name=""):
# Needed by Protobuf # Needed by Protobuf
native.bind( native.bind(
name = "python_headers", name = "python_headers",
actual = clean_dep("//util/python:python_headers"), actual = clean_dep("//third_party/python_runtime:headers"),
) )
# Needed by Protobuf # Needed by Protobuf

View File

@ -3,6 +3,6 @@ licenses(["notice"]) # New BSD, Python Software Foundation
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
alias( alias(
name = "python_headers", name = "headers",
actual = "@local_config_python//:python_headers", actual = "@local_config_python//:python_headers",
) )