Return a blob that will be set to scalar bool `True` after this net builder ran, iff it was halted early.
(self)
| 540 | _RunOnce.__exit__(self, etype, *args) |
| 541 | |
| 542 | def has_stopped(self): |
| 543 | """ |
| 544 | Return a blob that will be set to scalar bool `True` after |
| 545 | this net builder ran, iff it was halted early. |
| 546 | """ |
| 547 | assert self._ran, 'Context not used yet.' |
| 548 | return self._stopped |
| 549 | |
| 550 | |
| 551 | class _Loop(NetBuilder): |