(group_id: str)
| 1649 | expected_files = set() |
| 1650 | |
| 1651 | def get_hashed_filename(group_id: str) -> str: |
| 1652 | short_hash = _compute_group_hash(group_id) |
| 1653 | return os.path.join(offload_to_disk_path, f"group_{short_hash}.safetensors") |
| 1654 | |
| 1655 | if offload_type == "block_level": |
| 1656 | if num_blocks_per_group is None: |
no test coverage detected
searching dependent graphs…