Skip to content

Commit ac008d7

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 ac008d7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

backends/cadence/aot/memory_planning.py

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

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

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

0 commit comments

Comments
 (0)