| 85 | } |
| 86 | |
| 87 | bool HasControlFaninOrFanout(const GraphView& graph_view, const NodeDef* node) { |
| 88 | return HasControlFanin(graph_view, node) || |
| 89 | HasControlFanout(graph_view, node); |
| 90 | } |
| 91 | |
| 92 | } // end namespace grappler |
| 93 | } // end namespace tensorflow |
nothing calls this directly
no test coverage detected