Exit this control flow context.
(self)
| 731 | graph._set_control_flow_context(self) |
| 732 | |
| 733 | def Exit(self): |
| 734 | """Exit this control flow context.""" |
| 735 | graph = ops.get_default_graph() |
| 736 | last_context = self._context_stack.pop() |
| 737 | graph._set_control_flow_context(last_context) |
| 738 | |
| 739 | def EnterGradientColocation(self, op, gradient_uid): |
| 740 | """Start building a gradient colocated with an op.""" |