Get rid of tensorflow::test::Node
Conflicts with the tensorflow::Node class and is unused. Change: 123426500
This commit is contained in:
parent
c246c37b1b
commit
3ae0153778
@ -114,7 +114,6 @@ cc_library(
|
|||||||
cc_library(
|
cc_library(
|
||||||
name = "ops_testutil",
|
name = "ops_testutil",
|
||||||
testonly = 1,
|
testonly = 1,
|
||||||
srcs = ["ops_testutil.cc"],
|
|
||||||
hdrs = ["ops_testutil.h"],
|
hdrs = ["ops_testutil.h"],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
|
@ -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
|
|
@ -48,10 +48,6 @@ namespace tensorflow {
|
|||||||
|
|
||||||
namespace test {
|
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,
|
inline void SetOutputAttrs(OpKernelContext::Params* params,
|
||||||
std::vector<AllocatorAttributes>* attrs) {
|
std::vector<AllocatorAttributes>* attrs) {
|
||||||
attrs->clear();
|
attrs->clear();
|
||||||
|
Loading…
Reference in New Issue
Block a user