File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 12
12
from examples .models import MODEL_NAME_TO_MODEL
13
13
from examples .recipes .xnnpack_optimization import MODEL_NAME_TO_OPTIONS
14
14
15
+ import tosa
16
+ import serializer
17
+
18
+ print (dir (tosa ))
19
+ print (dir (serializer ))
20
+
15
21
BUILD_TOOLS = [
16
22
"buck2" ,
17
23
"cmake" ,
Original file line number Diff line number Diff line change 18
18
models : ${{ steps.gather-models.outputs.models }}
19
19
steps :
20
20
- uses : actions/checkout@v3
21
+ with :
22
+ submodules : ' true'
23
+ ref : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
21
24
- uses : actions/setup-python@v4
22
25
with :
23
26
python-version : ' 3.10'
Original file line number Diff line number Diff line change 28
28
[submodule "backends/xnnpack/third-party/XNNPACK "]
29
29
path = backends/xnnpack/third-party/XNNPACK
30
30
url = https://github.com/google/XNNPACK.git
31
+ [submodule "backends/tosa/third-party/serialization_lib "]
32
+ path = backends/arm/third-party/serialization_lib
33
+ url = https://git.mlplatform.org/tosa/serialization_lib.git
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ def run(self):
59
59
"executorch/schema" : "schema" ,
60
60
"executorch/extension" : "extension" ,
61
61
"executorch/bundled_program" : "bundled_program" ,
62
+ "tosa" : "backends/arm/third-party/serialization_lib/python/tosa" ,
63
+ "serializer" : "backends/arm/third-party/serialization_lib/python/serializer" ,
62
64
},
63
65
cmdclass = {
64
66
"install" : CustomInstallCommand ,
You can’t perform that action at this time.
0 commit comments