Total number of dumped tensors in the dump root directory. Returns: (`int`) The total number of dumped tensors in the dump root directory.
(self)
| 740 | |
| 741 | @property |
| 742 | def size(self): |
| 743 | """Total number of dumped tensors in the dump root directory. |
| 744 | |
| 745 | Returns: |
| 746 | (`int`) The total number of dumped tensors in the dump root directory. |
| 747 | """ |
| 748 | return sum(len(self._dump_tensor_data[device_name]) |
| 749 | for device_name in self._dump_tensor_data) |
| 750 | |
| 751 | def _load_partition_graphs(self, client_partition_graphs, validate): |
| 752 | """Load and process partition graphs. |