Id for next Operation instance. Also increments the internal id.
(self)
| 3810 | return op.outputs[tf_output.index] |
| 3811 | |
| 3812 | def _next_id(self): |
| 3813 | """Id for next Operation instance. Also increments the internal id.""" |
| 3814 | self._check_not_finalized() |
| 3815 | with self._lock: |
| 3816 | self._next_id_counter += 1 |
| 3817 | return self._next_id_counter |
| 3818 | |
| 3819 | @property |
| 3820 | def _last_id(self): |
no test coverage detected