Sets the current control flow context. Args: ctx: a context object.
(self, ctx)
| 3113 | return self._control_flow_context |
| 3114 | |
| 3115 | def _set_control_flow_context(self, ctx): |
| 3116 | """Sets the current control flow context. |
| 3117 | |
| 3118 | Args: |
| 3119 | ctx: a context object. |
| 3120 | """ |
| 3121 | self._control_flow_context = ctx |
| 3122 | |
| 3123 | def _copy_functions_to_graph_def(self, graph_def, starting_bytesize): |
| 3124 | """If this graph contains functions, copy them to `graph_def`.""" |
no outgoing calls