diff --git a/backends/cadence/aot/memory_planning.py b/backends/cadence/aot/memory_planning.py index 83a00518eb4..787ea4fa514 100644 --- a/backends/cadence/aot/memory_planning.py +++ b/backends/cadence/aot/memory_planning.py @@ -367,7 +367,8 @@ def print_memory_planning_info( # Print the memory usage per memory space as a table logging.info( - tabulate( + "\n" + + tabulate( memory_usage_table, headers=[ "Memory Space", @@ -398,7 +399,8 @@ def print_memory_planning_info( # Print the total memory usage as a table logging.info( - tabulate( + "\n" + + tabulate( total_memory_usage_table, tablefmt="outline", )