You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This diff introduces e2e runner for gemma3 model on cuda delegating using AOTI library, which is guarded by CI. Also other necessary infrastructure updates for building and running the `gemma3 e2e runner` on CUDA devices.
Differential Revision: [D85087532](https://our.internmc.facebook.com/intern/diff/D85087532/)
[ghstack-poisoned]
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ For Apple, please refer to the [iOS documentation](docs/source/using-executorch-
24
24
executorch
25
25
├── <ahref="backends">backends</a> - Backend delegate implementations for various hardware targets. Each backend uses partitioner to split the graph into subgraphs that can be executed on specific hardware, quantizer to optimize model precision, and runtime components to execute the graph on target hardware. For details refer to the <ahref="docs/source/backend-delegates-integration.md">backend documentation</a> and the <ahref="docs/source/using-executorch-export.md">Export and Lowering tutorial</a> for more information.
│ │ ├── <ahref="backends/apple/coreml">coreml</a> - CoreML backend for Apple devices. See <ahref="docs/source/backends-coreml.md">doc</a>.
28
-
│ │ └── <ahref="backends/apple/mps">mps</a> - Metal Performance Shaders backend for Apple devices. See <ahref="docs/source/backends-mps.md">doc</a>.
27
+
│ │ ├── <ahref="backends/apple/coreml">coreml</a> - CoreML backend for Apple devices. See <ahref="docs/source/backends/coreml/coreml-overview.md">doc</a>.
28
+
│ │ └── <ahref="backends/apple/mps">mps</a> - Metal Performance Shaders backend for Apple devices. See <ahref="docs/source/backends/mps/mps-overview.md">doc</a>.
29
29
│ ├── <ahref="backends/arm">arm</a> - ARM architecture backends. See <ahref="docs/source/backends-arm-ethos-u.md">doc</a>.
30
30
│ ├── <ahref="backends/cadence">cadence</a> - Cadence-specific backends. See <ahref="docs/source/backends-cadence.md">doc</a>.
31
31
│ ├── <ahref="backends/example">example</a> - Example backend implementations.
Copy file name to clipboardExpand all lines: backends/apple/coreml/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# ExecuTorch Core ML Delegate
2
2
3
3
This subtree contains the Core ML Delegate implementation for ExecuTorch.
4
-
Core ML is an optimized framework for running machine learning models on Apple devices. The delegate is the mechanism for leveraging the Core ML framework to accelerate operators when running on Apple devices. To learn how to use the CoreML delegate, see the [documentation](https://github.com/pytorch/executorch/blob/main/docs/source/backends-coreml.md).
4
+
Core ML is an optimized framework for running machine learning models on Apple devices. The delegate is the mechanism for leveraging the Core ML framework to accelerate operators when running on Apple devices. To learn how to use the CoreML delegate, see the [documentation](https://github.com/pytorch/executorch/blob/main/docs/source/backends/coreml/coreml-overview.md).
5
5
6
6
## Layout
7
7
-`compiler/` : Lowers a module to Core ML backend.
0 commit comments