| 353 | |
| 354 | @dataclass(frozen=True) |
| 355 | class ProfilePointEvent(ProfileEvent): |
| 356 | device:str; name:str; key:Any; arg:Any=field(default_factory=dict); ts:decimal.Decimal=field(default_factory=perf_counter_us) # noqa: E702 |
| 357 | |
| 358 | cpu_events:list[ProfileEvent] = [] |
| 359 | @contextlib.contextmanager |
no outgoing calls
searching dependent graphs…