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
Update on "[ET-VK][ez] Introduce a graph config setting to force resize functions to execute"
Title says it all! A few months back, a mechanism was introduced where an `ExecuteNode` would not call an operator's resize function if none of the arguments were updated.
However, this creates a blind spot during testing where the resize function of operators are not tested since the generated operator tests do not modify input sizes.
To address this, add a way to force the resize function to be called during testing.
Differential Revision: [D84716451](https://our.internmc.facebook.com/intern/diff/D84716451/)
[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.
0 commit comments