From 9ed064710a276c01d3b8e683d217c26ca0a861ec Mon Sep 17 00:00:00 2001 From: nimlgen <138685161+nimlgen@users.noreply.github.com> Date: Wed, 25 Dec 2024 23:12:28 +0300 Subject: [PATCH] hcq remove old profiler lines (#8414) --- tinygrad/runtime/support/hcq.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tinygrad/runtime/support/hcq.py b/tinygrad/runtime/support/hcq.py index 16e5ddb588..5f5978e9c9 100644 --- a/tinygrad/runtime/support/hcq.py +++ b/tinygrad/runtime/support/hcq.py @@ -308,8 +308,6 @@ class HCQCompiled(Compiled, Generic[SignalType]): self.timeline_signal:SignalType = self.signal_t(value=0, timeline_for_device=self) self._shadow_timeline_signal:SignalType = self.signal_t(value=0, timeline_for_device=self) self.sig_prof_records:list[tuple[HCQSignal, HCQSignal, str, bool]] = [] - self.raw_prof_records:list[tuple[decimal.Decimal, decimal.Decimal, str, bool, Optional[dict]]] = [] - self.dep_prof_records:list[tuple[decimal.Decimal, decimal.Decimal, HCQCompiled, bool, decimal.Decimal, decimal.Decimal, HCQCompiled, bool]] = [] from tinygrad.runtime.graph.hcq import HCQGraph super().__init__(device, allocator, renderer, compiler, runtime, HCQGraph)