aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/graph_transforms/transform_utils_test.cc
diff options
context:
space:
mode:
authorGravatar Skye Wanderman-Milne <skyewm@google.com>2017-03-29 22:09:23 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-29 23:32:42 -0700
commit649ac9824678b3233c2ef568f6a6102fe54050e5 (patch)
tree860383b6b2c133dcc2f844cf4ee0f2ff6d80e848 /tensorflow/tools/graph_transforms/transform_utils_test.cc
parentdcddf2d0b0c5cf83bffd26ce4f95b0978c046c38 (diff)
Move equal_graph_def.h/cc from core/graph to core/util
This fixes build dependencies for a future patch (specifically allows referencing equal_graph_def.h from core/framework) Change: 151668115
Diffstat (limited to 'tensorflow/tools/graph_transforms/transform_utils_test.cc')
-rw-r--r--tensorflow/tools/graph_transforms/transform_utils_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/tools/graph_transforms/transform_utils_test.cc b/tensorflow/tools/graph_transforms/transform_utils_test.cc
index 92ebc35834..a93695baba 100644
--- a/tensorflow/tools/graph_transforms/transform_utils_test.cc
+++ b/tensorflow/tools/graph_transforms/transform_utils_test.cc
@@ -19,12 +19,12 @@ limitations under the License.
#include "tensorflow/cc/ops/nn_ops.h"
#include "tensorflow/cc/ops/standard_ops.h"
#include "tensorflow/core/framework/tensor_testutil.h"
-#include "tensorflow/core/graph/equal_graph_def.h"
#include "tensorflow/core/lib/core/status_test_util.h"
#include "tensorflow/core/lib/io/path.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/platform/test_benchmark.h"
#include "tensorflow/core/public/session.h"
+#include "tensorflow/core/util/equal_graph_def.h"
namespace tensorflow {
namespace graph_transforms {