(group_id: str)
| 1485 | expected_files = set() |
| 1486 | |
| 1487 | def get_hashed_filename(group_id: str) -> str: |
| 1488 | short_hash = _compute_group_hash(group_id) |
| 1489 | return os.path.join(offload_to_disk_path, f"group_{short_hash}.safetensors") |
| 1490 | |
| 1491 | if offload_type == "block_level": |
| 1492 | if num_blocks_per_group is None: |
no test coverage detected
searching dependent graphs…