(uop: Uop)
| 1366 | |
| 1367 | #Simple heuristic for size to avoid too much stencil duplication |
| 1368 | def is_large(uop: Uop) -> bool: |
| 1369 | return len(list(uop.body.tokens())) > 120 |
| 1370 | |
| 1371 | |
| 1372 | def get_uop_cache_depths(uop: Uop) -> Iterator[tuple[int, int, int]]: |
no test coverage detected
searching dependent graphs…