Skip to content

Commit 917f8a8

Browse files
hsharma35facebook-github-bot
authored andcommitted
Fix logging after memory planning. (#7812)
Summary: Print memory planning info in a new line. Reviewed By: zonglinpeng Differential Revision: D68465256
1 parent b04912f commit 917f8a8

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)