aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-27 08:35:42 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-27 09:47:48 -0700
commit3ae0153778c0e2044264d10ad3a025e8daf0e542 (patch)
tree7e6a7eeabfca3d4c5f783cbaeca047efdd284ebd
parentc246c37b1ba537f9b1d5adb2f86c50ba6a8cecc3 (diff)
Get rid of tensorflow::test::Node
Conflicts with the tensorflow::Node class and is unused. Change: 123426500
-rw-r--r--tensorflow/core/kernels/BUILD1
-rw-r--r--tensorflow/core/kernels/ops_testutil.cc35
-rw-r--r--tensorflow/core/kernels/ops_testutil.h4
3 files changed, 0 insertions, 40 deletions
diff --git a/tensorflow/core/kernels/BUILD b/tensorflow/core/kernels/BUILD
index 06b7486997..8e4a1017ec 100644
--- a/tensorflow/core/kernels/BUILD
+++ b/tensorflow/core/kernels/BUILD
@@ -114,7 +114,6 @@ cc_library(
cc_library(
name = "ops_testutil",
testonly = 1,
- srcs = ["ops_testutil.cc"],
hdrs = ["ops_testutil.h"],
deps = [
"//tensorflow/core:core_cpu",
diff --git a/tensorflow/core/kernels/ops_testutil.cc b/tensorflow/core/kernels/ops_testutil.cc
deleted file mode 100644
index a3ce00d355..0000000000
--- a/tensorflow/core/kernels/ops_testutil.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Copyright 2015 Google Inc. 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.
-==============================================================================*/
-
-#include "tensorflow/core/kernels/ops_testutil.h"
-
-#include <vector>
-
-namespace tensorflow {
-namespace test {
-
-NodeDef Node(const string& name, const string& op,
- const std::vector<string>& inputs) {
- NodeDef def;
- def.set_name(name);
- def.set_op(op);
- for (const string& s : inputs) {
- def.add_input(s);
- }
- return def;
-}
-
-} // namespace test
-} // namespace tensorflow
diff --git a/tensorflow/core/kernels/ops_testutil.h b/tensorflow/core/kernels/ops_testutil.h
index b2b926e78d..335cd738bd 100644
--- a/tensorflow/core/kernels/ops_testutil.h
+++ b/tensorflow/core/kernels/ops_testutil.h
@@ -48,10 +48,6 @@ namespace tensorflow {
namespace test {
-// Return a NodeDef with the specified name/op/inputs.
-NodeDef Node(const string& name, const string& op,
- const std::vector<string>& inputs);
-
inline void SetOutputAttrs(OpKernelContext::Params* params,
std::vector<AllocatorAttributes>* attrs) {
attrs->clear();