(weight)
| 237 | |
| 238 | |
| 239 | def weight_fully_copied(weight): |
| 240 | return ( |
| 241 | hasattr(weight, "tensor_track") and weight.tensor_track is not None and weight.tensor_track.is_fully_copied() |
| 242 | ) |
| 243 | |
| 244 | |
| 245 | def process_final_after_loading(model, fd_config: FDConfig): |
no test coverage detected