File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -1575,8 +1575,8 @@ def _find_fqn_for_placeholder(
15751575 warnings .warn (
15761576 "Mutation on a buffer in the model is detected. ExecuTorch assumes "
15771577 "buffers that are mutated in the graph have a meaningless initial state, "
1578- "only the shape and dtype will be serialized, unless a pass which marks "
1579- "spec.const= True such as InitializedMutableBufferPass is run." ,
1578+ "only the shape and dtype will be serialized, unless a pass which sets "
1579+ 'meta["et_init_buffer"] to True such as InitializedMutableBufferPass is run.' ,
15801580 UserWarning ,
15811581 stacklevel = 1 ,
15821582 )
Original file line number Diff line number Diff line change 1212
1313class InitializedMutableBufferPass (ExportPass ):
1414 """
15- If the buffer has the name "cache_pos", such as in an kv_cache
16- module with `self.register_buffer("cache_pos", torch.arange(10))`,
17- mark it with a custom tag which later is used by the emitter to
18- flag spec.const to True, which provides the mutable buffer with
19- an initialized state.
15+ If a buffer has a name that within a specified list, set meta["et_init_buffer"]
16+ to True, which provides the mutable buffer with an initialized state.
17+
18+ As an example, a module with `self.register_buffer("cache_pos", torch.arange(10))`
19+ when patterns = ["cache_pos"] would have its initial state set instead of being
20+ left uninitialized by default.
2021 """
2122
2223 def __init__ (self , patterns : List [str ]) -> None :
You can’t perform that action at this time.
0 commit comments