Returns true iff 'n' is a control flow node.
| 879 | |
| 880 | // Returns true iff 'n' is a control flow node. |
| 881 | inline bool IsControlFlow(const Node* n) { return n->IsControlFlow(); } |
| 882 | |
| 883 | // Returns true if the node only depends on its input's metadata |
| 884 | // (shape). Specifically, returns true for "Size", "Shape" and "Rank" ops. |
no test coverage detected