| 64 | } |
| 65 | |
| 66 | inline bool IsNextIteration(const NodeDef& node_def) { |
| 67 | return node_def.op() == "NextIteration" || |
| 68 | node_def.op() == "RefNextIteration"; |
| 69 | } |
| 70 | |
| 71 | bool IsValidNodeName(StringPiece s, bool allow_internal_ops) { |
| 72 | using ::tensorflow::strings::Scanner; |
no test coverage detected