From eaf33a6b43df6d2dc3121b20e10bdaf6c5287684 Mon Sep 17 00:00:00 2001 From: Olivia Hsu Date: Wed, 11 Oct 2023 11:16:46 -0700 Subject: [PATCH] Oops remove print statements --- sam/sim/test/gen_gantt.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sam/sim/test/gen_gantt.py b/sam/sim/test/gen_gantt.py index b421a49b..453a0553 100644 --- a/sam/sim/test/gen_gantt.py +++ b/sam/sim/test/gen_gantt.py @@ -13,7 +13,6 @@ def gen_gantt(extra_info, testname): sam_name = '' for k in extra_info.keys(): - print(k, sam_name) if "done_cycles" in k: sam_name = k.split('/')[0] finish_c = extra_info[k] @@ -42,8 +41,6 @@ def gen_gantt(extra_info, testname): if "backpressure" in extra_info.keys() and extra_info["backpressure"]: back_depth = extra_info["depth"] - print(finish_list, block_list, start_list, duration_list) - # Writing cycle info to csv file with open(testname + '_' + extra_info["dataset"] + '_back_' + back_depth + '.csv', 'w', newline='') as file: writer = csv.writer(file)