We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184b020 commit 962027aCopy full SHA for 962027a
extension/llm/export/partitioner_lib.py
@@ -158,7 +158,11 @@ def _validate_ios_version() -> None:
158
op_linear_quantizer_config=op_linear_quantizer_config,
159
)
160
161
- take_over_mutable_buffer = minimum_deployment_target >= ct.target.iOS18
+ # ExecuTorch does not build CoreML delegate runtime to handle state
162
+ # when using OSS scripts, so we define take_over_mutable_buffer = False,
163
+ # even when target is iOS18
164
+ # take_over_mutable_buffer = minimum_deployment_target >= ct.target.iOS18
165
+ take_over_mutable_buffer = False
166
return CoreMLPartitioner( # pyre-fixme[16]
167
compile_specs=compile_specs,
168
take_over_mutable_buffer=take_over_mutable_buffer,
0 commit comments