From 28ab4fa268592d19f3e6ec2c593063cfc821687d Mon Sep 17 00:00:00 2001 From: Ayaka Yorihiro Date: Tue, 19 Nov 2024 09:35:02 -0500 Subject: [PATCH] fix typo --- tools/profiler/new-parse-vcd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profiler/new-parse-vcd.py b/tools/profiler/new-parse-vcd.py index 0c18a3725..6367fc205 100644 --- a/tools/profiler/new-parse-vcd.py +++ b/tools/profiler/new-parse-vcd.py @@ -138,7 +138,7 @@ def enddefinitions(self, vcd, signals, cur_sig_vals): if cell_id not in self.cell_invoke_probe_info: self.cell_invoke_probe_info[cell_id] = {invoker_group: probe_info_obj} else: - self.call_stack_probe_info[cell_id][invoker_group] = probe_info_obj + self.cell_invoke_probe_info[cell_id][invoker_group] = probe_info_obj caller_id = invoker_group + DELIMITER + component if caller_id not in self.cell_invoke_caller_probe_info: self.cell_invoke_caller_probe_info[caller_id] = {cell_name : probe_info_obj}