(self)
| 1393 | raise type(e)(node_def, op, message) |
| 1394 | |
| 1395 | def _extend_graph(self): |
| 1396 | with self._graph._session_run_lock(): # pylint: disable=protected-access |
| 1397 | tf_session.ExtendSession(self._session) |
| 1398 | |
| 1399 | # The threshold to run garbage collection to delete dead tensors. |
| 1400 | _DEAD_HANDLES_THRESHOLD = 10 |
no test coverage detected