| 85 | } |
| 86 | |
| 87 | Node* AddNodeWithName(const string& name) { |
| 88 | Node* node; |
| 89 | TF_CHECK_OK(NodeBuilder(name, "NoOp").Finalize(&graph_, &node)); |
| 90 | return node; |
| 91 | } |
| 92 | |
| 93 | Node* FromNodeDef(const string& name, const string& node_type, |
| 94 | int num_inputs) { |
nothing calls this directly
no test coverage detected