-
Notifications
You must be signed in to change notification settings - Fork 700
Add export script for hg optimum ga models #12281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
366 changes: 366 additions & 0 deletions
366
examples/apple/coreml/scripts/export_et_optimum_model.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,366 @@ | ||
| import coremltools as ct | ||
| import argparse | ||
|
|
||
| from optimum.exporters.executorch.recipe_registry import register_recipe | ||
| import logging | ||
| from typing import Dict | ||
|
|
||
| from tabulate import tabulate | ||
| from torch.export import ExportedProgram | ||
|
|
||
| from executorch.devtools.backend_debug import get_delegation_info | ||
| from executorch.exir import ( | ||
| EdgeCompileConfig, | ||
| ExecutorchBackendConfig, | ||
| ExecutorchProgram, | ||
| to_edge_transform_and_lower, | ||
| ) | ||
|
|
||
| COREML_RECIPE = "coreml-et-testing" | ||
| COREML_RECIPE_LLM_KWARGS = { | ||
| # FP16 does not give good numerics for some LLMs | ||
| "compute_precision": ct.precision.FLOAT32, | ||
| "quant_recipe": "4bit", | ||
| "compute_unit": ct.ComputeUnit.CPU_AND_GPU, | ||
| "minimum_deployment_target": ct.target.iOS18, | ||
| } | ||
| COREML_RECIPE_FP32_KWARGS = { | ||
| "compute_precision": ct.precision.FLOAT32, | ||
| "compute_unit": ct.ComputeUnit.CPU_AND_GPU, | ||
| } | ||
| COREML_RECIPE_FP16_KWARGS = { | ||
| "compute_precision": ct.precision.FLOAT16, | ||
| "compute_unit": ct.ComputeUnit.ALL, | ||
| } | ||
|
|
||
|
|
||
|
|
||
| @register_recipe(COREML_RECIPE) | ||
| def export_to_executorch_with_coreml( | ||
| model, | ||
| **kwargs, | ||
| ): | ||
| """ | ||
| Export a PyTorch model to ExecuTorch w/ delegation to CoreML backend. | ||
|
|
||
| This function also write metadata required by the ExecuTorch runtime to the model. | ||
|
|
||
| Args: | ||
| model (Union[CausalLMExportableModule, MaskedLMExportableModule, Seq2SeqLMExportableModule]): | ||
| The PyTorch model to be exported to ExecuTorch. | ||
| **kwargs: | ||
| Additional keyword arguments for recipe-specific configurations, e.g. export using different example inputs, or different compile/bechend configs. | ||
|
|
||
| Returns: | ||
| Dict[str, ExecutorchProgram]: | ||
| A map of exported and optimized program for ExecuTorch. | ||
| For encoder-decoder models or multimodal models, it may generate multiple programs. | ||
| """ | ||
| # Import here because coremltools might not be available in all environments | ||
| import coremltools as ct | ||
|
|
||
| from executorch.backends.apple.coreml.compiler import CoreMLBackend | ||
| from executorch.backends.apple.coreml.partition import CoreMLPartitioner | ||
|
|
||
| def _lower_to_executorch( | ||
| exported_programs: Dict[str, ExportedProgram], | ||
| metadata=None, | ||
| **kwargs, | ||
| ) -> Dict[str, ExecutorchProgram]: | ||
| valid_kwargs = [ | ||
| "compute_unit", | ||
| "minimum_deployment_target", | ||
| "compute_precision", | ||
| "model_type", | ||
| "take_over_mutable_buffer", | ||
| "quant_recipe", | ||
| ] | ||
| for k in kwargs: | ||
| if k not in valid_kwargs: | ||
| raise ValueError(f"Invalid keyword argument {k} for CoreML recipe. Valid arguments are {valid_kwargs}") | ||
|
|
||
| compute_unit = kwargs.get("compute_unit", ct.ComputeUnit.ALL) | ||
| minimum_deployment_target = kwargs.get("minimum_deployment_target", ct.target.iOS15) | ||
| compute_precision = kwargs.get("compute_precision", ct.precision.FLOAT16) | ||
| model_type = kwargs.get("model_type", "model") | ||
| model_type = { | ||
| "model": CoreMLBackend.MODEL_TYPE.MODEL, | ||
| "modelc": CoreMLBackend.MODEL_TYPE.COMPILED_MODEL, | ||
| }[model_type] | ||
| take_over_mutable_buffer = kwargs.get( | ||
| "take_over_mutable_buffer", (minimum_deployment_target >= ct.target.iOS18) | ||
| ) | ||
|
|
||
| op_linear_quantizer_config = None | ||
| quant_recipe = kwargs.get("quant_recipe", None) | ||
| valid_quant_recipes = { | ||
| "8bit": { | ||
| "mode": "linear_symmetric", | ||
| "dtype": "int8", | ||
| "granularity": "per_channel", | ||
| }, | ||
| "4bit": { | ||
| "mode": "linear_symmetric", | ||
| "dtype": "int4", | ||
| "granularity": "per_block", | ||
| "block_size": 32, | ||
| }, | ||
| } | ||
| if quant_recipe is not None and quant_recipe not in valid_quant_recipes: | ||
| raise ValueError(f"Invalid quant recipe {quant_recipe}, must be one of {valid_quant_recipes.keys()}") | ||
| op_linear_quantizer_config = valid_quant_recipes.get(quant_recipe, None) | ||
|
|
||
| et_progs = {} | ||
| backend_config_dict = {} | ||
| for pte_name, exported_program in exported_programs.items(): | ||
| exported_program = exported_program.run_decompositions({}) | ||
| logging.debug(f"\nExported program for {pte_name}.pte: {exported_program}") | ||
| et_progs[pte_name] = to_edge_transform_and_lower( | ||
| exported_program, | ||
| partitioner=[ | ||
| CoreMLPartitioner( | ||
| # Do not delegate embedding because it leads to a compression conflict | ||
| skip_ops_for_coreml_delegation=[ | ||
| "aten.embedding.default", | ||
| ], | ||
| compile_specs=CoreMLBackend.generate_compile_specs( | ||
| compute_unit=compute_unit, | ||
| minimum_deployment_target=minimum_deployment_target, | ||
| compute_precision=compute_precision, | ||
| model_type=model_type, | ||
| op_linear_quantizer_config=op_linear_quantizer_config, | ||
| ), | ||
| take_over_mutable_buffer=take_over_mutable_buffer, | ||
| ) | ||
| ], | ||
| compile_config=EdgeCompileConfig( | ||
| _check_ir_validity=False, | ||
| # In ET 0.7, we can set _skip_dim_order=False | ||
| _skip_dim_order=True, | ||
| ), | ||
| constant_methods=metadata, | ||
| ).to_executorch( | ||
| config=ExecutorchBackendConfig(**backend_config_dict), | ||
| ) | ||
| logging.debug( | ||
| f"\nExecuTorch program for {pte_name}.pte: {et_progs[pte_name].exported_program().graph_module}" | ||
| ) | ||
| delegation_info = get_delegation_info(et_progs[pte_name].exported_program().graph_module) | ||
| logging.debug(f"\nDelegation info Summary for {pte_name}.pte: {delegation_info.get_summary()}") | ||
| logging.debug( | ||
| f"\nDelegation info for {pte_name}.pte: {tabulate(delegation_info.get_operator_delegation_dataframe(), headers='keys', tablefmt='fancy_grid')}" | ||
| ) | ||
| return et_progs | ||
|
|
||
| exported_progs = model.export() | ||
| return _lower_to_executorch(exported_progs, model.metadata, **kwargs) | ||
|
|
||
|
|
||
|
|
||
| # model_id = "HuggingFaceTB/SmolLM2-135M" # works, output questionable | ||
| # model_id = "NousResearch/Llama-3.2-1B" # works at 4-bit (output questionable) | ||
| # model_id = "microsoft/Phi-4-mini-instruct" # fails export | ||
| # model_id = "Qwen/Qwen3-0.6B" # works at 4-bit (nonsense output) | ||
| # model_id = "allenai/OLMo-1B-hf" # works at 4-bit (bad output) | ||
| def test_decoder_only_model(model_id): | ||
| from optimum.executorch import ExecuTorchModelForCausalLM | ||
| from transformers import AutoTokenizer | ||
|
|
||
|
|
||
| prompt = "Simply put, the theory of relativity states" | ||
| tokenizer = AutoTokenizer.from_pretrained(model_id) | ||
|
|
||
| model = ExecuTorchModelForCausalLM.from_pretrained( | ||
| model_id, | ||
| recipe=COREML_RECIPE, | ||
| recipe_kwargs=COREML_RECIPE_LLM_KWARGS, | ||
| ) | ||
|
|
||
| generated_text = model.text_generation( | ||
| tokenizer=tokenizer, | ||
| prompt=prompt, | ||
| max_seq_len=64, | ||
| ) | ||
| print(f"\nGenerated text:\n\t{generated_text}") | ||
|
|
||
|
|
||
|
|
||
|
|
||
| # All models fail export with same issue as https://fb.workplace.com/groups/pytorch.edge.users/permalink/1796069037930048/ | ||
| # Even if fixed, bypassed they fail lowering to CoreML because symints are passed to signature | ||
| # model_id = "google-bert/bert-base-uncased" | ||
| # model_id = "distilbert/distilbert-base-uncased" | ||
| # model_id = "FacebookAI/xlm-roberta-base" | ||
| def test_encoder_only_model(model_id): | ||
| from optimum.executorch import ExecuTorchModelForMaskedLM | ||
| from transformers import AutoTokenizer | ||
|
|
||
| tokenizer = AutoTokenizer.from_pretrained(model_id) | ||
| model = ExecuTorchModelForMaskedLM.from_pretrained( | ||
| model_id=model_id, | ||
| recipe=COREML_RECIPE, | ||
| recipe_kwargs=COREML_RECIPE_LLM_KWARGS, | ||
| ) | ||
|
|
||
| input_text = f"Paris is the {tokenizer.mask_token} of France." | ||
| inputs = tokenizer( | ||
| input_text, | ||
| return_tensors="pt", | ||
| padding="max_length", | ||
| max_length=10, | ||
| ) | ||
|
|
||
| # Test inference using ExecuTorch model | ||
| exported_outputs = model.forward(inputs["input_ids"], inputs["attention_mask"]) | ||
| predicted_masks = tokenizer.decode(exported_outputs[0, 4].topk(5).indices) | ||
| print(f"Predicted masks: {predicted_masks}") | ||
| assert any(word in predicted_masks for word in ["capital", "center", "heart", "birthplace"]) | ||
|
|
||
|
|
||
| # model_id = "openai/whisper-tiny" works | ||
| def test_whisper(model_id): | ||
| from optimum.executorch import ExecuTorchModelForSpeechSeq2Seq | ||
| from transformers import AutoProcessor, AutoTokenizer | ||
| from datasets import load_dataset | ||
|
|
||
| model_id = "openai/whisper-tiny" | ||
| tokenizer = AutoTokenizer.from_pretrained(model_id) | ||
| model = ExecuTorchModelForSpeechSeq2Seq.from_pretrained( | ||
| model_id, | ||
| recipe=COREML_RECIPE, | ||
| recipe_kwargs=COREML_RECIPE_LLM_KWARGS, | ||
| ) | ||
|
|
||
| processor = AutoProcessor.from_pretrained(model_id) | ||
| dataset = load_dataset("distil-whisper/librispeech_long", "clean", split="validation") | ||
| sample = dataset[0]["audio"] | ||
|
|
||
| input_features = processor( | ||
| sample["array"], return_tensors="pt", truncation=False, sampling_rate=sample["sampling_rate"] | ||
| ).input_features | ||
|
|
||
| # Current implementation of the transcibe method accepts up to 30 seconds of audio, therefore I trim the audio here. | ||
| input_features_trimmed = input_features[:, :, :3000].contiguous() | ||
|
|
||
| generated_transcription = model.transcribe(tokenizer, input_features_trimmed) | ||
| expected_text = " Mr. Quilter is the apostle of the middle classes, and we are glad to welcome his gospel. Nor is Mr. Quilter's manner less interesting than his matter. He tells us that at this festive season of the year, with Christmas and roast beef looming before us, similarly drawn from eating and its results occur most readily to the mind. He has grave doubts whether Sir Frederick Latins work is really Greek after all, and can discover that." | ||
| print(f"Generated transcription: {generated_transcription}") | ||
| print(f"Expected transcription: {expected_text}") | ||
|
|
||
| # model_id = "google-t5/t5-small" | ||
| def test_t5(model_id): | ||
| from optimum.executorch import ExecuTorchModelForSeq2SeqLM | ||
| from transformers import AutoTokenizer | ||
|
|
||
| tokenizer = AutoTokenizer.from_pretrained(model_id) | ||
| model = ExecuTorchModelForSeq2SeqLM.from_pretrained(model_id, recipe=COREML_RECIPE, recipe_kwargs=COREML_RECIPE_LLM_KWARGS) | ||
|
|
||
| article = ( | ||
| " New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York. A" | ||
| " year later, she got married again in Westchester County, but to a different man and without divorcing" | ||
| " her first husband. Only 18 days after that marriage, she got hitched yet again. Then, Barrientos" | ||
| ' declared "I do" five more times, sometimes only within two weeks of each other. In 2010, she married' | ||
| " once more, this time in the Bronx. In an application for a marriage license, she stated it was her" | ||
| ' "first and only" marriage. Barrientos, now 39, is facing two criminal counts of "offering a false' | ||
| ' instrument for filing in the first degree," referring to her false statements on the 2010 marriage' | ||
| " license application, according to court documents. Prosecutors said the marriages were part of an" | ||
| " immigration scam. On Friday, she pleaded not guilty at State Supreme Court in the Bronx, according to" | ||
| " her attorney, Christopher Wright, who declined to comment further. After leaving court, Barrientos was" | ||
| " arrested and charged with theft of service and criminal trespass for allegedly sneaking into the New" | ||
| " York subway through an emergency exit, said Detective Annette Markowski, a police spokeswoman. In total," | ||
| " Barrientos has been married 10 times, with nine of her marriages occurring between 1999 and 2002. All" | ||
| " occurred either in Westchester County, Long Island, New Jersey or the Bronx. She is believed to still be" | ||
| " married to four men, and at one time, she was married to eight men at once, prosecutors say. Prosecutors" | ||
| " said the immigration scam involved some of her husbands, who filed for permanent residence status" | ||
| " shortly after the marriages. Any divorces happened only after such filings were approved. It was" | ||
| " unclear whether any of the men will be prosecuted. The case was referred to the Bronx District" | ||
| " Attorney's Office by Immigration and Customs Enforcement and the Department of Homeland Security's" | ||
| ' Investigation Division. Seven of the men are from so-called "red-flagged" countries, including Egypt,' | ||
| " Turkey, Georgia, Pakistan and Mali. Her eighth husband, Rashid Rajput, was deported in 2006 to his" | ||
| " native Pakistan after an investigation by the Joint Terrorism Task Force." | ||
| ) | ||
| article = "summarize: " + article.strip() | ||
|
|
||
| tokenizer = AutoTokenizer.from_pretrained(model_id) | ||
| generated_text = model.text_generation( | ||
| tokenizer=tokenizer, | ||
| prompt=article, | ||
| ) | ||
| expected_text = 'a year later, she got married again in westchester county, new york. she was married to a different man, but only 18 days after that marriage. she is facing two criminal counts of "offering a false instrument"' | ||
| print(f"Generated text:\n\t{generated_text}") | ||
| print(f"Expected text:\n\t{expected_text}") | ||
|
|
||
|
|
||
|
|
||
| # model_id = "google/vit-base-patch16-224" | ||
| def test_vit(model_id): | ||
| from transformers import AutoConfig, AutoModelForImageClassification | ||
| from optimum.executorch import ExecuTorchModelForImageClassification | ||
| import torch | ||
|
|
||
| config = AutoConfig.from_pretrained(model_id) | ||
| batch_size = 1 | ||
| num_channels = config.num_channels | ||
| height = config.image_size | ||
| width = config.image_size | ||
| pixel_values = torch.rand(batch_size, num_channels, height, width) | ||
|
|
||
| et_model = ExecuTorchModelForImageClassification.from_pretrained( | ||
| model_id=model_id, | ||
| recipe=COREML_RECIPE, | ||
| recipe_kwargs=COREML_RECIPE_FP32_KWARGS, | ||
| ) | ||
|
|
||
| eager_model = AutoModelForImageClassification.from_pretrained(model_id).eval().to("cpu") | ||
| with torch.no_grad(): | ||
| eager_output = eager_model(pixel_values) | ||
| et_output = et_model.forward(pixel_values) | ||
| assert torch.allclose(eager_output.logits, et_output[0]) | ||
|
|
||
|
|
||
| def main(): | ||
| parser = argparse.ArgumentParser() | ||
|
|
||
| parser.add_argument( | ||
| "-m", | ||
| "--model_name", | ||
| required=True, | ||
| ) | ||
| model_name = parser.parse_args().model_name | ||
|
|
||
| # Decoder-only models | ||
| if model_name == "smollm": | ||
| # Generated text: Simply put, the theory of relativity states that the laws of physics are the same in all places. The theory of relativity is the most important theory in the field of physics. It is the foundation for the rest. The theory of relativity is the foundation for the rest. | ||
| # Decode: 27 tps | ||
| test_decoder_only_model(model_id="HuggingFaceTB/SmolLM2-135M") | ||
| elif model_name == "llama3": | ||
| test_decoder_only_model(model_id="NousResearch/Llama-3.2-1B") | ||
| elif model_name == "phi4": | ||
| test_decoder_only_model(model_id="microsoft/Phi-4-mini-instruct") | ||
| elif model_name == "qwen3": | ||
| test_decoder_only_model(model_id="Qwen/Qwen3-0.6B") | ||
| elif model_name == "olmo": | ||
| test_decoder_only_model(model_id="allenai/OLMo-1B-hf") | ||
| elif model_name == "gemma3": | ||
| test_decoder_only_model(model_id="unsloth/gemma-3-1b-it") | ||
| # Encoder-only models | ||
| elif model_name == "bert": | ||
| test_encoder_only_model(model_id="google-bert/bert-base-uncased") | ||
| elif model_name == "distilbert": | ||
| test_encoder_only_model(model_id="distilbert/distilbert-base-uncased") | ||
| elif model_name == "roberta": | ||
| test_encoder_only_model(model_id="FacebookAI/xlm-roberta-base") | ||
| # Vision models | ||
| elif model_name == "vit": | ||
| test_vit(model_id="google/vit-base-patch16-224") | ||
| # Speech models | ||
| elif model_name == "whisper": | ||
| test_whisper(model_id="openai/whisper-tiny") | ||
| # Seq2Seq models | ||
| elif model_name == "t5": | ||
| test_t5(model_id="google-t5/t5-small") | ||
| else: | ||
| raise ValueError(f"Invalid model name {model_name}") | ||
|
|
||
| if __name__ == "__main__": | ||
| main() | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@guangy10 is there a way to get the PTE file from this model?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Today it's generating the PTE to a temp dir if
export=True(the default) is passed to the API. I think you can print the path by setting logging level to INFO and copy the PTE back, or you can use optimum-cli export executorch to generate the PTE to the specified dest.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I use optimum-cli, how can I pass the pte file to something like ExecuTorchModelForMaskedLM to test the model?