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 is to allow users to transform an ExportedProgram using passes in places where it may result in a dialect that is not compliant with the original creation context.
For example, if an ExportedProgram was created in an edge dialect and now needs to be run and transformed in a way that is not compliant with the EdgeDialectVerifier, such as in a delegate preprocess() function, then the user may want to override the verifier with their own or simply disable it.
Differential Revision: [D73205727](https://our.internmc.facebook.com/intern/diff/D73205727/)
[ghstack-poisoned]
Copy file name to clipboardExpand all lines: CONTRIBUTING.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
@@ -45,7 +45,7 @@ executorch
45
45
│ └── <ahref="devtools/visualization">visualization</a> - Visualization tools for representing model structure and performance metrics.
46
46
├── <ahref="docs">docs</a> - Static docs tooling and documentation source files.
47
47
├── <ahref="examples">examples</a> - Examples of various user flows, such as model export, delegates, and runtime execution.
48
-
├── <ahref="exir">exir</a> - Ahead-of-time library: model capture and lowering APIs. EXport Intermediate Representation (EXIR) is a format for representing the result of <ahref="https://pytorch.org/docs/main/export.ir_spec.html">torch.export</a>. This directory contains utilities and passes for lowering the EXIR graphs into different <ahref="/docs/source/ir-exir.md">dialects</a> and eventually suitable to run on target hardware.
48
+
├── <ahref="exir">exir</a> - Ahead-of-time library: model capture and lowering APIs. EXport Intermediate Representation (EXIR) is a format for representing the result of <ahref="https://pytorch.org/docs/stable/export.html">torch.export</a>. This directory contains utilities and passes for lowering the EXIR graphs into different <ahref="/docs/source/ir-exir.md">dialects</a> and eventually suitable to run on target hardware.
49
49
│ ├── <ahref="exir/_serialize">_serialize</a> - Serialize final export artifact.
50
50
│ ├── <ahref="exir/backend">backend</a> - Backend delegate ahead of time APIs.
51
51
│ ├── <ahref="exir/capture">capture</a> - Program capture.
0 commit comments