aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core
diff options
context:
space:
mode:
authorGravatar Josh Levenberg <josh11b@tensorflow.org>2016-01-26 11:42:38 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2016-01-26 12:55:35 -0800
commitc10f439740396006e45059435e552e4d4ad2c1ad (patch)
tree25493e150b65c4d7d8fd4b6c8b2abc08069981f0 /tensorflow/core
parentf8fa35b8a1910772d6d6ba7b621f905358640c2c (diff)
Global search & replace to move to the new location for
tensorflow/core/ files and build targets. Change: 113080052
Diffstat (limited to 'tensorflow/core')
-rw-r--r--tensorflow/core/graph/algorithm_test.cc2
-rw-r--r--tensorflow/core/graph/colors.cc2
-rw-r--r--tensorflow/core/graph/costutil.h2
-rw-r--r--tensorflow/core/graph/dot.h2
-rw-r--r--tensorflow/core/graph/edgeset.h2
-rw-r--r--tensorflow/core/graph/equal_graph_def.h2
-rw-r--r--tensorflow/core/graph/graph.h4
-rw-r--r--tensorflow/core/graph/graph_constructor.h2
-rw-r--r--tensorflow/core/graph/graph_constructor_test.cc2
-rw-r--r--tensorflow/core/graph/graph_def_builder.h2
-rw-r--r--tensorflow/core/graph/node_builder.h2
-rw-r--r--tensorflow/core/graph/optimizer_cse_test.cc2
-rw-r--r--tensorflow/core/graph/subgraph.cc2
-rw-r--r--tensorflow/core/graph/subgraph.h2
-rw-r--r--tensorflow/core/graph/subgraph_test.cc2
-rw-r--r--tensorflow/core/graph/testlib.cc2
-rw-r--r--tensorflow/core/graph/testlib.h6
-rw-r--r--tensorflow/core/graph/types.h2
-rw-r--r--tensorflow/core/graph/validate.h2
-rw-r--r--tensorflow/core/graph/validate_test.cc2
20 files changed, 23 insertions, 23 deletions
diff --git a/tensorflow/core/graph/algorithm_test.cc b/tensorflow/core/graph/algorithm_test.cc
index decf5befed..1f2b1080af 100644
--- a/tensorflow/core/graph/algorithm_test.cc
+++ b/tensorflow/core/graph/algorithm_test.cc
@@ -23,9 +23,9 @@ limitations under the License.
#include "tensorflow/core/graph/graph_def_builder.h"
#include "tensorflow/core/graph/subgraph.h"
#include "tensorflow/core/kernels/ops_util.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/platform/test.h"
-#include "tensorflow/core/public/status.h"
// TODO(josh11b): Test setting the "device" field of a NodeDef.
// TODO(josh11b): Test that feeding won't prune targets.
diff --git a/tensorflow/core/graph/colors.cc b/tensorflow/core/graph/colors.cc
index 386e325dde..f5f3d1c96b 100644
--- a/tensorflow/core/graph/colors.cc
+++ b/tensorflow/core/graph/colors.cc
@@ -16,7 +16,7 @@ limitations under the License.
#include "tensorflow/core/graph/colors.h"
#include "tensorflow/core/platform/macros.h"
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/costutil.h b/tensorflow/core/graph/costutil.h
index 487834bb53..d78160e78b 100644
--- a/tensorflow/core/graph/costutil.h
+++ b/tensorflow/core/graph/costutil.h
@@ -17,7 +17,7 @@ limitations under the License.
#define TENSORFLOW_GRAPH_COSTUTIL_H_
#include <vector>
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/dot.h b/tensorflow/core/graph/dot.h
index 740ba1018d..79a538978a 100644
--- a/tensorflow/core/graph/dot.h
+++ b/tensorflow/core/graph/dot.h
@@ -18,7 +18,7 @@ limitations under the License.
#include <functional>
#include <string>
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/edgeset.h b/tensorflow/core/graph/edgeset.h
index 7fdc9b691e..b9068a5404 100644
--- a/tensorflow/core/graph/edgeset.h
+++ b/tensorflow/core/graph/edgeset.h
@@ -19,7 +19,7 @@ limitations under the License.
#include <stddef.h>
#include <set>
#include "tensorflow/core/platform/macros.h"
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
#include "tensorflow/core/platform/logging.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/equal_graph_def.h b/tensorflow/core/graph/equal_graph_def.h
index c1a3822612..2e8ad82c10 100644
--- a/tensorflow/core/graph/equal_graph_def.h
+++ b/tensorflow/core/graph/equal_graph_def.h
@@ -18,7 +18,7 @@ limitations under the License.
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/framework/graph_def_util.h"
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/graph.h b/tensorflow/core/graph/graph.h
index 6e05624ce2..b966f51e0e 100644
--- a/tensorflow/core/graph/graph.h
+++ b/tensorflow/core/graph/graph.h
@@ -46,11 +46,11 @@ limitations under the License.
#include "tensorflow/core/graph/edgeset.h"
#include "tensorflow/core/lib/core/arena.h"
#include "tensorflow/core/lib/core/refcount.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/iterator_range.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/macros.h"
-#include "tensorflow/core/platform/port.h"
-#include "tensorflow/core/public/status.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/graph_constructor.h b/tensorflow/core/graph/graph_constructor.h
index 7552861bca..226bab8529 100644
--- a/tensorflow/core/graph/graph_constructor.h
+++ b/tensorflow/core/graph/graph_constructor.h
@@ -18,7 +18,7 @@ limitations under the License.
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/graph/graph.h"
-#include "tensorflow/core/public/status.h"
+#include "tensorflow/core/lib/core/status.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/graph_constructor_test.cc b/tensorflow/core/graph/graph_constructor_test.cc
index a39ca21add..226a898cc6 100644
--- a/tensorflow/core/graph/graph_constructor_test.cc
+++ b/tensorflow/core/graph/graph_constructor_test.cc
@@ -19,12 +19,12 @@ limitations under the License.
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/kernels/ops_util.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/strings/str_util.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/regexp.h"
#include "tensorflow/core/platform/test.h"
-#include "tensorflow/core/public/status.h"
#include "tensorflow/core/public/version.h"
// TODO(josh11b): Test InitCostModel().
diff --git a/tensorflow/core/graph/graph_def_builder.h b/tensorflow/core/graph/graph_def_builder.h
index e2a7f978cf..2a212bbc49 100644
--- a/tensorflow/core/graph/graph_def_builder.h
+++ b/tensorflow/core/graph/graph_def_builder.h
@@ -21,9 +21,9 @@ limitations under the License.
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/graph/node_builder.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/core/stringpiece.h"
#include "tensorflow/core/lib/gtl/array_slice.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/node_builder.h b/tensorflow/core/graph/node_builder.h
index cd5881e1bf..c8b4056974 100644
--- a/tensorflow/core/graph/node_builder.h
+++ b/tensorflow/core/graph/node_builder.h
@@ -21,8 +21,8 @@ limitations under the License.
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/op_def.pb.h"
#include "tensorflow/core/graph/graph.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/array_slice.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/optimizer_cse_test.cc b/tensorflow/core/graph/optimizer_cse_test.cc
index 0fe4a93c1e..6cb8175301 100644
--- a/tensorflow/core/graph/optimizer_cse_test.cc
+++ b/tensorflow/core/graph/optimizer_cse_test.cc
@@ -17,6 +17,7 @@ limitations under the License.
#include <vector>
#include "tensorflow/core/framework/op.h"
+#include "tensorflow/core/framework/tensor.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/graph/graph_constructor.h"
#include "tensorflow/core/graph/testlib.h"
@@ -28,7 +29,6 @@ limitations under the License.
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/test_benchmark.h"
-#include "tensorflow/core/public/tensor.h"
namespace tensorflow {
namespace {
diff --git a/tensorflow/core/graph/subgraph.cc b/tensorflow/core/graph/subgraph.cc
index 570d73f78c..d5a3ca2df0 100644
--- a/tensorflow/core/graph/subgraph.cc
+++ b/tensorflow/core/graph/subgraph.cc
@@ -31,8 +31,8 @@ limitations under the License.
#include "tensorflow/core/graph/node_builder.h"
#include "tensorflow/core/graph/tensor_id.h"
#include "tensorflow/core/lib/core/errors.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/platform/logging.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/subgraph.h b/tensorflow/core/graph/subgraph.h
index da3aeb5b24..9105b81bc2 100644
--- a/tensorflow/core/graph/subgraph.h
+++ b/tensorflow/core/graph/subgraph.h
@@ -20,8 +20,8 @@ limitations under the License.
#include "tensorflow/core/framework/device_attributes.pb.h"
#include "tensorflow/core/graph/graph.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/array_slice.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
namespace subgraph {
diff --git a/tensorflow/core/graph/subgraph_test.cc b/tensorflow/core/graph/subgraph_test.cc
index e80ebdd634..2b90b6bc37 100644
--- a/tensorflow/core/graph/subgraph_test.cc
+++ b/tensorflow/core/graph/subgraph_test.cc
@@ -23,6 +23,7 @@ limitations under the License.
#include "tensorflow/core/graph/graph_constructor.h"
#include "tensorflow/core/graph/graph_def_builder.h"
#include "tensorflow/core/kernels/ops_util.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/lib/strings/str_util.h"
#include "tensorflow/core/platform/logging.h"
@@ -30,7 +31,6 @@ limitations under the License.
#include "tensorflow/core/platform/regexp.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/test_benchmark.h"
-#include "tensorflow/core/public/status.h"
// TODO(josh11b): Test setting the "device" field of a NodeDef.
// TODO(josh11b): Test that feeding won't prune targets.
diff --git a/tensorflow/core/graph/testlib.cc b/tensorflow/core/graph/testlib.cc
index ddf322818c..ab2e462e87 100644
--- a/tensorflow/core/graph/testlib.cc
+++ b/tensorflow/core/graph/testlib.cc
@@ -22,8 +22,8 @@ limitations under the License.
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/graph/node_builder.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/platform/logging.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
namespace test {
diff --git a/tensorflow/core/graph/testlib.h b/tensorflow/core/graph/testlib.h
index cdb7a2687b..8e98b1e57a 100644
--- a/tensorflow/core/graph/testlib.h
+++ b/tensorflow/core/graph/testlib.h
@@ -21,11 +21,11 @@ limitations under the License.
#include <string>
#include <vector>
+#include "tensorflow/core/framework/tensor.h"
+#include "tensorflow/core/framework/tensor_shape.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/graph/types.h"
-#include "tensorflow/core/platform/port.h"
-#include "tensorflow/core/public/tensor.h"
-#include "tensorflow/core/public/tensor_shape.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
namespace test {
diff --git a/tensorflow/core/graph/types.h b/tensorflow/core/graph/types.h
index 0cc79c6246..1fa68dbeb2 100644
--- a/tensorflow/core/graph/types.h
+++ b/tensorflow/core/graph/types.h
@@ -17,7 +17,7 @@ limitations under the License.
#define TENSORFLOW_GRAPH_TYPES_H_
#include "tensorflow/core/lib/gtl/int_type.h"
-#include "tensorflow/core/platform/port.h"
+#include "tensorflow/core/platform/types.h"
namespace tensorflow {
diff --git a/tensorflow/core/graph/validate.h b/tensorflow/core/graph/validate.h
index a2ba3cf272..8c92850a8d 100644
--- a/tensorflow/core/graph/validate.h
+++ b/tensorflow/core/graph/validate.h
@@ -18,7 +18,7 @@ limitations under the License.
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/framework/op.h"
-#include "tensorflow/core/public/status.h"
+#include "tensorflow/core/lib/core/status.h"
namespace tensorflow {
namespace graph {
diff --git a/tensorflow/core/graph/validate_test.cc b/tensorflow/core/graph/validate_test.cc
index bce1608c4b..da39a23b7d 100644
--- a/tensorflow/core/graph/validate_test.cc
+++ b/tensorflow/core/graph/validate_test.cc
@@ -23,9 +23,9 @@ limitations under the License.
#include "tensorflow/core/graph/graph_def_builder.h"
#include "tensorflow/core/graph/subgraph.h"
#include "tensorflow/core/kernels/ops_util.h"
+#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/platform/test.h"
-#include "tensorflow/core/public/status.h"
namespace tensorflow {
namespace {