@@ -67,7 +67,6 @@ We welcome contributions. To get started review the [guidelines](CONTRIBUTING.md
67
67
```
68
68
executorch
69
69
├── backends # Backend delegate implementations.
70
- ├── build # Utilities for managing the build system.
71
70
├── codegen # Tooling to autogenerate bindings between kernels and the runtime.
72
71
├── configurations
73
72
├── docs # Static docs tooling.
@@ -81,8 +80,7 @@ executorch
81
80
| ├── operator # Operator node manipulation utilities.
82
81
| ├── passes # Built-in compiler passes.
83
82
| ├── program # Export artifacts.
84
- | ├── serde # Graph module
85
- serialization/deserialization.
83
+ | ├── serde # Graph module serialization/deserialization.
86
84
| ├── verification # IR verification.
87
85
├── extension # Extensions built on top of the runtime.
88
86
| ├── android # ExecuTorch wrappers for Android apps.
@@ -97,8 +95,7 @@ serialization/deserialization.
97
95
| ├── parallel # C++ threadpool integration.
98
96
| ├── pybindings # Python API for executorch runtime.
99
97
| ├── pytree # C++ and Python flattening and unflattening lib for pytrees.
100
- | ├── runner_util # Helpers for writing C++ PTE-execution
101
- tools.
98
+ | ├── runner_util # Helpers for writing C++ PTE-execution tools.
102
99
| ├── testing_util # Helpers for writing C++ tests.
103
100
| ├── training # Experimental libraries for on-device training
104
101
├── kernels # 1st party kernel implementations.
@@ -114,9 +111,9 @@ tools.
114
111
| ├── executor # Model loading, initialization, and execution.
115
112
| ├── kernel # Kernel registration and management.
116
113
| ├── platform # Layer between architecture specific code and portable C++.
117
- ├── schema # ExecuTorch PTE file format flatbuffer
118
- schemas .
119
- ├── scripts # Utility scripts for size management, dependency management, etc .
114
+ ├── schema # ExecuTorch PTE file format flatbuffer schemas.
115
+ ├── scripts # Utility scripts for building libs, size management, dependency management, etc .
116
+ ├── tools # Development tool management.
120
117
├── devtools # Model profiling, debugging, and introspection.
121
118
├── shim # Compatibility layer between OSS and Internal builds
122
119
├── test # Broad scoped end-to-end tests.
0 commit comments