Skip to content

Commit 468d72d

Browse files
Olivia-liupytorchbot
authored andcommitted
Fix a typo in the memory planning doc (#5723)
Summary: Pull Request resolved: #5723 Found this typo in the doc. Reviewed By: dvorjackz Differential Revision: D63500296 fbshipit-source-id: 23ba7f287324bcaaa200a8ec55d28aac919f43b8 (cherry picked from commit c1c5080)
1 parent e18bf6f commit 468d72d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/compiler-memory-planning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ program = edge_program.to_executorch(
3434
memory_planning_pass=MemoryPlanningPass(
3535
memory_planning_algo="greedy",
3636
alloc_graph_input=False, # Inputs will not be memory planned, the data_ptr for input tensors after model load will be nullptr
37-
alloc_graph_output=True, # Outputs will be memory planned, the data_ptr for input tensors after model load will be in the `planned_memory`.
37+
alloc_graph_output=True, # Outputs will be memory planned, the data_ptr for output tensors after model load will be in the `planned_memory`.
3838
)
3939
)
4040
)

0 commit comments

Comments
 (0)