Skip to content
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

[ExecuTorch][to_backend] Enable to_backend API to leverage preprocess_multimethod #9824

Open
wants to merge 5 commits into
base: gh/mcr229/21/head
Choose a base branch
from

Conversation

mcr229
Copy link
Contributor

@mcr229 mcr229 commented Apr 1, 2025

Summary

We add a new to_backend api which for multi method models. Specifically, we pass in a dictionary mapping MethodName to ExportedProgram, as well as a dictionary mapping MethodName to Partitioner. We then return a dictionary mapping MethodName to the partitioned and lowered exported program.

In addition, we also provide a new preprocess API for backends to implement. This API is preprocess_multimethod. The signature of the new method is as follows:

    def preprocess_multimethod(
        cls,
        edge_programs: Dict[str, List[ExportedProgram]],
        compile_specs: Dict[str, List[List[CompileSpec]]],
    ) -> Dict[str, list[PreprocessResult]]:
        """
        Runs preprocess on all partitioned Edge Programs across multiple methods. This allows
        backends to share information across partitioned graphs. Backend can serialize shared
        data by putting the shared data into the data_store_output of the preprocess results.
        This will record the shared data used by that specific partition.

        Default implementation is running the existing preprocess implementation on all

        Args:
            edge_programs: Dictionary mapping the method name to a list of all the partitioned
                           edge_programs from that method to be lowered.
            compile_specs: Dictionary mapping the method name to a list of compile_specs. The
                           list of compile specs maps directly to the list of edge_programs for the
                           same given method name i.e. edge_program[method_name][i] --> compile_specs[method_name][i]

        Returns:
            Dictionary mapping the method name to a list of PreprocessResults. The list of
            PreprocessResults maps directly to the list of edge_programs for the same given
            method name. i.e. edge_program[method_name][i] --> result[method_name][i]
        """

This new API enableds backends to preprocess all partitions/methods at once. This way, while processing blobs, they can identify shared components between preprocessed blobs. Shared components can be serialized within the NamedDataStore.

The key change in backend infra, is that when partitioning, we now have to identify all the partitioned graphs to be lowered at once, and pass them to preprocess_multimethod at once. Previously, as we found lowerable partitions, we preprocessed and embedded them into the graph.

Testing

python -m unittest exir.backend.test.test_to_backend_multi_method

[ghstack-poisoned]
@mcr229
Copy link
Contributor Author

mcr229 commented Apr 1, 2025

Copy link

pytorch-bot bot commented Apr 1, 2025

🔗 Helpful Links

🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/9824

Note: Links to docs will display an error until the docs builds have been completed.

✅ No Failures

As of commit 3a29677 with merge base 56c8dc2 (image):
💚 Looks good so far! There are no failures yet. 💚

This comment was automatically generated by Dr. CI and updates every 15 minutes.

mcr229 added a commit that referenced this pull request Apr 1, 2025
…_all

ghstack-source-id: f0f8445e51481241c8ffa9a59346a06d2e2b4a54
ghstack-comment-id: 2770905773
Pull Request resolved: #9824
@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Apr 1, 2025
@mcr229 mcr229 requested review from digantdesai and cccclai April 1, 2025 23:48
[ghstack-poisoned]
mcr229 added a commit that referenced this pull request Apr 1, 2025
…_all

ghstack-source-id: 8c4373fb0f5bfd54ac638efda400acb66c93b52a
ghstack-comment-id: 2770905773
Pull Request resolved: #9824
@mcr229 mcr229 changed the title [ExecuTorch][to_backend] Enable to_backend API to leverage preprocess_all [ExecuTorch][to_backend] Enable to_backend API to leverage preprocess_multimethod Apr 2, 2025
[ghstack-poisoned]
mcr229 added a commit that referenced this pull request Apr 2, 2025
…_all

ghstack-source-id: 85ee576d9529dccdbc5d58d16515926a0b995e65
ghstack-comment-id: 2770905773
Pull Request resolved: #9824
[ghstack-poisoned]
mcr229 added a commit that referenced this pull request Apr 3, 2025
…_all

ghstack-source-id: 25d6d5ef11499c41386674e9f14b172829b2cb4e
ghstack-comment-id: 2770905773
Pull Request resolved: #9824
[ghstack-poisoned]
mcr229 added a commit that referenced this pull request Apr 5, 2025
…_all

ghstack-source-id: 49510c5116866b7cc3b55759feadab682cf23571
ghstack-comment-id: 2770905773
Pull Request resolved: #9824
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants