| 49 | OptimizerCSETest() : graph_(OpRegistry::Global()) {} |
| 50 | |
| 51 | void InitGraph(const string& s) { |
| 52 | ::tensorflow::InitGraph(s, &graph_); |
| 53 | original_ = CanonicalGraphString(&graph_); |
| 54 | } |
| 55 | |
| 56 | static bool IncludeNode(const Node* n) { return n->IsOp(); } |
| 57 |
nothing calls this directly
no test coverage detected