Skip to content

Commit bfdfd45

Browse files
HectorSVCankitm3k
authored andcommitted
support Qnn 2 28 (microsoft#22724)
### Description support Qnn 2.28 update default qnn vesion to 2.28 in build pipeline
1 parent fade313 commit bfdfd45

17 files changed

+14
-78
lines changed

onnxruntime/core/providers/qnn/builder/qnn_backend_manager.cc

-62
Original file line numberDiff line numberDiff line change
@@ -656,68 +656,6 @@ Status QnnBackendManager::GetMaxSpillFillBufferSize(unsigned char* buffer,
656656
return ORT_MAKE_STATUS(ONNXRUNTIME, FAIL, "Unsupported context binary info version.");
657657
}
658658

659-
for (uint32_t i = 0; i < graph_count; ++i) {
660-
if (graphs_info[i].version == QNN_SYSTEM_CONTEXT_GRAPH_INFO_VERSION_3) {
661-
auto htp_graph_info = reinterpret_cast<QnnHtpSystemContext_GraphBlobInfo_t*>(graphs_info[i].graphInfoV3.graphBlobInfo);
662-
if (htp_graph_info->version == QNN_SYSTEM_CONTEXT_HTP_GRAPH_INFO_BLOB_VERSION_V1) {
663-
auto spill_fill_buffer_size = htp_graph_info->contextBinaryGraphBlobInfoV1.spillFillBufferSize;
664-
max_spill_fill_buffer_size = spill_fill_buffer_size > max_spill_fill_buffer_size ? spill_fill_buffer_size : max_spill_fill_buffer_size;
665-
} else {
666-
LOGS(*logger_, VERBOSE) << "Unknown context binary graph info blob version.";
667-
}
668-
} else if (graphs_info[i].version == QNN_SYSTEM_CONTEXT_GRAPH_INFO_VERSION_2 ||
669-
graphs_info[i].version == QNN_SYSTEM_CONTEXT_GRAPH_INFO_VERSION_1) {
670-
LOGS(*logger_, VERBOSE) << "Skip retrieve spill file buffer size, it is not supported with graph info v1 & v2.";
671-
} else {
672-
LOGS(*logger_, VERBOSE) << "Unknown context binary graph info version.";
673-
}
674-
}
675-
676-
LOGS(*logger_, VERBOSE) << "Get max spill fill buffer size completed.";
677-
return Status::OK();
678-
}
679-
680-
Status QnnBackendManager::LoadCachedQnnContextFromBuffer(char* buffer, uint64_t buffer_length,
681-
std::string node_name,
682-
QnnModelLookupTable& qnn_models,
683-
int64_t max_spill_fill_size) {
684-
bool result = nullptr == qnn_sys_interface_.systemContextCreate ||
685-
nullptr == qnn_sys_interface_.systemContextGetBinaryInfo ||
686-
nullptr == qnn_sys_interface_.systemContextFree;
687-
ORT_RETURN_IF(result, "Failed to get valid function pointer.");
688-
689-
QnnSystemContext_Handle_t sys_ctx_handle = nullptr;
690-
auto rt = qnn_sys_interface_.systemContextCreate(&sys_ctx_handle);
691-
ORT_RETURN_IF(QNN_SUCCESS != rt, "Failed to create system handle.");
692-
693-
const QnnSystemContext_BinaryInfo_t* binary_info = nullptr;
694-
Qnn_ContextBinarySize_t binary_info_size{0};
695-
rt = qnn_sys_interface_.systemContextGetBinaryInfo(sys_ctx_handle,
696-
static_cast<void*>(buffer),
697-
buffer_length,
698-
&binary_info,
699-
&binary_info_size);
700-
ORT_RETURN_IF(QNN_SUCCESS != rt, "Failed to get context binary info.");
701-
702-
// binary_info life cycle is here
703-
// Binary info to graph info
704-
// retrieve Qnn graph info from binary info
705-
ORT_RETURN_IF(nullptr == binary_info, "Qnn cached binary info is nullptr.");
706-
uint32_t graph_count = 0;
707-
QnnSystemContext_GraphInfo_t* graphs_info = nullptr;
708-
if (binary_info->version == QNN_SYSTEM_CONTEXT_BINARY_INFO_VERSION_3) {
709-
graph_count = binary_info->contextBinaryInfoV3.numGraphs;
710-
graphs_info = binary_info->contextBinaryInfoV3.graphs;
711-
} else if (binary_info->version == QNN_SYSTEM_CONTEXT_BINARY_INFO_VERSION_2) {
712-
graph_count = binary_info->contextBinaryInfoV2.numGraphs;
713-
graphs_info = binary_info->contextBinaryInfoV2.graphs;
714-
} else if (binary_info->version == QNN_SYSTEM_CONTEXT_BINARY_INFO_VERSION_1) {
715-
graph_count = binary_info->contextBinaryInfoV1.numGraphs;
716-
graphs_info = binary_info->contextBinaryInfoV1.graphs;
717-
} else {
718-
return ORT_MAKE_STATUS(ONNXRUNTIME, FAIL, "Unsupported context binary info version.");
719-
}
720-
721659
ORT_RETURN_IF(graph_count < 1 || graphs_info == nullptr, "Failed to get graph info from Qnn cached context.");
722660
LOGS(*logger_, VERBOSE) << "Graph count from QNN context: " << graph_count;
723661

onnxruntime/test/providers/qnn/gather_op_htp_test.cc

-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ TEST_F(QnnHTPBackendTests, GatherOp_IndicesDynamicInt32_Axis0) {
132132
}
133133

134134
// disabled for QNN 2.28.0.241029 failed for accuracy validation
135-
// Also fails on QNN 2.28.2.
136135
// qdq@QNN_EP val: 3.6094117164611816 (err: 1.3094117641448975, err/output_range: 22.19342041015625%)
137136
// qdq@CPU_EP val: 2.2905881404876709 (err: 0.0094118118286132812, err/output_range: 0.15952222049236298%)
138137
// abs(qdq@QNN_EP - qdq@CPU_EP) / output_range = 22.033897399902344%

onnxruntime/test/providers/qnn/simple_op_htp_test.cc

-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ TEST_F(QnnHTPBackendTests, UnaryOp_Tanh) {
230230
}
231231

232232
// disabled for QNN 2.28.0.241029 backendValidateOpConfig failed
233-
// still fails on QNN 2.28.2.
234233
// QnnDsp <E> [4294967295] has incorrect Value -32768, expected equal to 0.
235234
// QnnDsp <V> validateNativeOps node_token_6:qti.aisw:Tanh htp op validator failed 3110
236235
// QnnDsp <V> registered validator failed => 3110

tools/ci_build/github/azure-pipelines/android-arm64-v8a-QNN-crosscompile-ci-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ parameters:
3232
- name: QnnSdk
3333
displayName: QNN SDK version
3434
type: string
35-
default: 2.28.2.241116
35+
default: 2.28.0.241029
3636

3737
jobs:
3838
- job: Build_QNN_EP

tools/ci_build/github/azure-pipelines/linux-qnn-ci-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ parameters:
3333
- name: QnnSdk
3434
displayName: QNN SDK version
3535
type: string
36-
default: 2.28.2.241116
36+
default: 2.28.0.241029
3737

3838
jobs:
3939
- job: Build_QNN_EP

tools/ci_build/github/azure-pipelines/py-packaging-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ parameters:
5959
- name: qnn_sdk_version
6060
type: string
6161
displayName: 'QNN SDK version. Only for QNN packages.'
62-
default: 2.28.2.241116
62+
default: 2.28.0.241029
6363

6464
trigger: none
6565

tools/ci_build/github/azure-pipelines/qnn-ep-nuget-packaging-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ parameters:
22
- name: QnnSdk
33
displayName: QNN SDK Version
44
type: string
5-
default: 2.28.2.241116
5+
default: 2.28.0.241029
66

77
- name: build_config
88
displayName: Build Configuration

tools/ci_build/github/azure-pipelines/stages/py-cpu-packaging-stage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ parameters:
5959
- name: qnn_sdk_version
6060
type: string
6161
displayName: 'QNN SDK version. Only for QNN packages.'
62-
default: 2.28.2.241116
62+
default: 2.28.0.241029
6363

6464
stages:
6565
- ${{ if eq(parameters.enable_windows_cpu, true) }}:

tools/ci_build/github/azure-pipelines/templates/jobs/download_linux_qnn_sdk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parameters:
22
- name: QnnSDKVersion
33
type: string
4-
default: '2.28.2.241116'
4+
default: '2.28.0.241029'
55

66
steps:
77
- script: |

tools/ci_build/github/azure-pipelines/templates/jobs/download_win_qnn_sdk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parameters:
22
- name: QnnSDKVersion
33
type: string
4-
default: '2.28.2.241116'
4+
default: '2.28.0.241029'
55

66
steps:
77
- powershell: |

tools/ci_build/github/azure-pipelines/templates/py-linux-qnn.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ parameters:
2626
- name: QnnSdk
2727
displayName: QNN SDK version
2828
type: string
29-
default: 2.28.2.241116
29+
default: 2.28.0.241029
3030

3131
jobs:
3232
- job: Linux_py_qnn_Wheels_x64

tools/ci_build/github/azure-pipelines/templates/py-win-arm64-qnn.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
- name: QNN_SDK
88
displayName: QNN SDK Version
99
type: string
10-
default: 2.28.2.241116
10+
default: 2.28.0.241029
1111

1212
- name: ENV_SETUP_SCRIPT
1313
type: string

tools/ci_build/github/azure-pipelines/templates/py-win-arm64ec-qnn.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
- name: QNN_SDK
88
displayName: QNN SDK Version
99
type: string
10-
default: 2.28.2.241116
10+
default: 2.28.0.241029
1111

1212
- name: ENV_SETUP_SCRIPT
1313
type: string

tools/ci_build/github/azure-pipelines/templates/py-win-x64-qnn.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
- name: QNN_SDK
88
displayName: QNN SDK Version
99
type: string
10-
default: 2.28.2.241116
10+
default: 2.28.0.241029
1111

1212
- name: ENV_SETUP_SCRIPT
1313
type: string

tools/ci_build/github/azure-pipelines/templates/qnn-ep-win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
parameters:
2-
QnnSdk: '2.28.2.241116'
2+
QnnSdk: '2.28.0.241029'
33
build_config: 'RelWithDebInfo'
44
IsReleaseBuild: false
55
DoEsrp: false

tools/ci_build/github/azure-pipelines/win-qnn-arm64-ci-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ parameters:
3333
- name: QnnSdk
3434
displayName: QNN SDK version
3535
type: string
36-
default: 2.28.2.241116
36+
default: 2.28.0.241029
3737

3838
jobs:
3939
- job: 'build'

tools/ci_build/github/azure-pipelines/win-qnn-ci-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ parameters:
3333
- name: QnnSdk
3434
displayName: QNN SDK version
3535
type: string
36-
default: 2.28.2.241116
36+
default: 2.28.0.241029
3737

3838
jobs:
3939
- job: 'build'

0 commit comments

Comments
 (0)