(self)
| 522 | pool.finalize(f"pool{i}") |
| 523 | |
| 524 | def pprint(self): |
| 525 | for pool in itertools.chain.from_iterable(self.device_to_pools.values()): |
| 526 | print() |
| 527 | print(pool.name) |
| 528 | print(pool.root.get_live_ranges()) |
| 529 | pprint.pprint(pool.root) |
| 530 | |
| 531 | |
| 532 | class BufferGroup: |
no test coverage detected