Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backends/qualcomm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Please check `generate_qnn_executorch_compiler_spec()` in
- Snapdragon 8 Gen 2
- Snapdragon 8 Gen 3
- Snapdragon 8 Elite
- Snapdragon 8 Elite Gen 5
- SA8295
- SA8255
- SSG2115P
Expand Down
1 change: 1 addition & 0 deletions backends/qualcomm/serialization/qc_compiler_spec.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ enum QcomChipset: int {
SM8550 = 43,
SM8650 = 57,
SM8750 = 69,
SM8850 = 87,
SSG2115P = 46,
SSG2125P = 58,
SXR1230P = 45,
Expand Down
2 changes: 2 additions & 0 deletions backends/qualcomm/serialization/qc_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class QcomChipset(IntEnum):
SM8550 = 43 # v73
SM8650 = 57 # v75
SM8750 = 69 # v79
SM8850 = 87 # v81
SSG2115P = 46 # v73
SSG2125P = 58 # v73
SXR1230P = 45 # v73
Expand All @@ -71,6 +72,7 @@ class SocInfo:
QcomChipset.SA8255: SocInfo(QcomChipset.SA8255, HtpInfo(HtpArch.V73, 8)),
QcomChipset.SM8650: SocInfo(QcomChipset.SM8650, HtpInfo(HtpArch.V75, 8)),
QcomChipset.SM8750: SocInfo(QcomChipset.SM8750, HtpInfo(HtpArch.V79, 8)),
QcomChipset.SM8850: SocInfo(QcomChipset.SM8850, HtpInfo(HtpArch.V81, 8)),
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
QcomChipset.SSG2125P: SocInfo(QcomChipset.SSG2125P, HtpInfo(HtpArch.V73, 2)),
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
Expand Down
3 changes: 3 additions & 0 deletions backends/qualcomm/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,7 @@ def generate_qnn_executorch_compiler_spec(
SM8550(Snapdragon 8 Gen 2)
SM8650(Snapdragon 8 Gen 3)
SM8750(Snapdragon 8 Elite)
SM8850(Snapdragon 8 Elite Gen 5)
backend_options: Options required by different backends.
debug: Enable verbose logging. Disclaimer: this option must change in
the near future.
Expand Down Expand Up @@ -1097,6 +1098,7 @@ def get_soc_to_arch_map():
"SA8255": HtpArch.V73,
"SM8650": HtpArch.V75,
"SM8750": HtpArch.V79,
"SM8850": HtpArch.V81,
"SSG2115P": HtpArch.V73,
"SSG2125P": HtpArch.V73,
"SXR1230P": HtpArch.V73,
Expand All @@ -1117,6 +1119,7 @@ def get_soc_to_chipset_map():
"SA8255": QcomChipset.SA8255,
"SM8650": QcomChipset.SM8650,
"SM8750": QcomChipset.SM8750,
"SM8850": QcomChipset.SM8850,
"SSG2115P": QcomChipset.SSG2115P,
"SSG2125P": QcomChipset.SSG2125P,
"SXR1230P": QcomChipset.SXR1230P,
Expand Down