Returns True if current thread has eager executing enabled.
(self)
| 654 | self.context_switches.pop() |
| 655 | |
| 656 | def executing_eagerly(self): |
| 657 | """Returns True if current thread has eager executing enabled.""" |
| 658 | return self._thread_local_data.is_eager |
| 659 | |
| 660 | def ones_rank_cache(self): |
| 661 | """Per-device cache for scalars.""" |
no outgoing calls