(stats: Stats)
| 1202 | ] |
| 1203 | |
| 1204 | def calc_optimizer_table(stats: Stats) -> Rows: |
| 1205 | optimizer_stats = stats.get_optimizer_stats() |
| 1206 | |
| 1207 | return [ |
| 1208 | (label, Count(value), Ratio(value, den)) |
| 1209 | for label, (value, den) in optimizer_stats.items() |
| 1210 | ] |
| 1211 | |
| 1212 | def calc_jit_memory_table(stats: Stats) -> Rows: |
| 1213 | jit_memory_stats = stats.get_jit_memory_stats() |
nothing calls this directly
no test coverage detected
searching dependent graphs…