Skip to content

Commit c72580c

Browse files
hsharma35YIWENX14
authored andcommitted
Fix logging after memory planning.
Differential Revision: D68465256 Pull Request resolved: #7812
1 parent b7a84df commit c72580c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

backends/cadence/aot/memory_planning.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@ def print_memory_planning_info(
367367

368368
# Print the memory usage per memory space as a table
369369
logging.info(
370-
tabulate(
370+
"\n"
371+
+ tabulate(
371372
memory_usage_table,
372373
headers=[
373374
"Memory Space",
@@ -398,7 +399,8 @@ def print_memory_planning_info(
398399

399400
# Print the total memory usage as a table
400401
logging.info(
401-
tabulate(
402+
"\n"
403+
+ tabulate(
402404
total_memory_usage_table,
403405
tablefmt="outline",
404406
)

0 commit comments

Comments
 (0)