Skip to content

Commit de95983

Browse files
committed
add QCS9100
1 parent 864e27e commit de95983

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

backends/qualcomm/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Please check `generate_qnn_executorch_compiler_spec()` in
2727
- SXR1230P
2828
- SXR2230P
2929
- SXR2330P
30+
- QCS9100
3031

3132
### Adding more supported Chipset
3233
Currently, users cannot add additional chipset models because the chipset ID is not accessible to community users. If you have specific chipset models you wish to add, please contact one of the authors in the `Code Reviews` section at the bottom of this page.

backends/qualcomm/serialization/qc_compiler_spec.fbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ enum QcomChipset: int {
4343
SXR1230P = 45,
4444
SXR2230P = 53,
4545
SXR2330P = 75,
46+
QCS9100 = 77,
4647
}
4748

4849
/// Indicate the information of the specified SoC.

backends/qualcomm/serialization/qc_schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class QcomChipset(IntEnum):
4949
SXR1230P = 45 # v73
5050
SXR2230P = 53 # v69
5151
SXR2330P = 75 # v79
52+
QCS9100 = 77 #v73
5253

5354

5455
@dataclass
@@ -69,6 +70,7 @@ class SocInfo:
6970
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
7071
QcomChipset.SXR2230P: SocInfo(QcomChipset.SXR2230P, HtpInfo(HtpArch.V69, 8)),
7172
QcomChipset.SXR2330P: SocInfo(QcomChipset.SXR2330P, HtpInfo(HtpArch.V79, 8)),
73+
QcomChipset.QCS9100: SocInfo(QcomChipset.QCS9100, HtpInfo(HtpArch.V73, 8)),
7274
}
7375

7476

backends/qualcomm/utils/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1091,6 +1091,7 @@ def get_soc_to_arch_map():
10911091
"SXR1230P": HtpArch.V73,
10921092
"SXR2230P": HtpArch.V69,
10931093
"SXR2330P": HtpArch.V79,
1094+
"QCS9100": HtpArch.V73,
10941095
}
10951096

10961097

@@ -1107,6 +1108,7 @@ def get_soc_to_chipset_map():
11071108
"SXR1230P": QcomChipset.SXR1230P,
11081109
"SXR2230P": QcomChipset.SXR2230P,
11091110
"SXR2330P": QcomChipset.SXR2330P,
1111+
"QCS9100": QcomChipset.QCS9100,
11101112
}
11111113

11121114

0 commit comments

Comments
 (0)