Skip to content

Commit 91f09aa

Browse files
authored
Fix logging after memory planning.
Differential Revision: D68465256 Pull Request resolved: #7812
1 parent b3d41f5 commit 91f09aa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

backends/cadence/aot/memory_planning.py

+4-2
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)