Return True if the tensor is fully filled along tracked dimension(s).
(self)
| 104 | self.trackers[batch_id].mark(start, end) |
| 105 | |
| 106 | def is_fully_copied(self) -> bool: |
| 107 | """Return True if the tensor is fully filled along tracked dimension(s).""" |
| 108 | return all(tr.is_full() for tr in self.trackers) |
| 109 | |
| 110 | |
| 111 | def set_weight_attrs(param, param_attr_map: Optional[dict[str, Any]]): |
no test coverage detected