From 13c913908df4ac237cbe718572547c64069f8c20 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Fri, 10 May 2019 16:30:39 -0500 Subject: [PATCH] Print table titles --- examples/dagrt_fusion/fusion-study.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/dagrt_fusion/fusion-study.py b/examples/dagrt_fusion/fusion-study.py index e49aecab..ff467d66 100755 --- a/examples/dagrt_fusion/fusion-study.py +++ b/examples/dagrt_fusion/fusion-study.py @@ -955,6 +955,7 @@ def statement_counts_table(): stepper = get_example_stepper(queue, use_fusion=False) if PRINT_RESULTS_TO_STDOUT: + print("==== Statement Counts ====") outf = sys.stdout else: out_path = "statement-counts.tex" @@ -1043,6 +1044,7 @@ def scalar_assignment_percent_of_total_mem_ops_table(): result3d = mem_ops_results(queue, 3) if PRINT_RESULTS_TO_STDOUT: + print("==== Scalar Assigment % of Total Mem Ops ====") outf = sys.stdout else: out_path = "scalar-assignments-mem-op-percentage.tex" @@ -1082,6 +1084,7 @@ def scalar_assignment_effect_of_fusion_mem_ops_table(): result3d = mem_ops_results(queue, 3) if PRINT_RESULTS_TO_STDOUT: + print("==== Scalar Assigment Inlining Impact ====") outf = sys.stdout else: out_path = "scalar-assignments-mem-op-percentage.tex" -- GitLab