[QNN EP] Uplevel ort_core dependency to v1.24.4#194
Merged
qti-kromero merged 3 commits intomainfrom Apr 3, 2026
Merged
Conversation
Update ort_core and ort_prebuilt dependencies from v1.24.1 to v1.24.4 to align with the ORT QNN EP 2.1.0 release requirements. Previously, cmake/deps.txt referenced ort_core v1.24.1 while requirements.txt required onnxruntime >= 1.24.2, causing a version mismatch where onnxruntime.dll was built as v1.24.1 despite the project requiring a newer version. Changes: - cmake/deps.txt: update ort_core URL and SHA1 to v1.24.4 - qcom/packages.yml: update ort_prebuilt version anchor to 1.24.4 (applies to all platforms: windows_x64, windows_arm64, linux_x64, linux_aarch64) Fixes: AISW-177418
Update hunk offsets in 0001 and 0002 patches to match upstream line number changes in ort_core v1.24.4. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ore v1.24.4 Update patch line numbers to match ort_core v1.24.4 source and include the extended_udma provider option in the allowed options list. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
qti-yuduo
approved these changes
Apr 2, 2026
qti-mattsinc
approved these changes
Apr 2, 2026
Collaborator
qti-mattsinc
left a comment
There was a problem hiding this comment.
Should we update this table to reflect that v1.24.4 has now been built/tested with?
onnxruntime-qnn/docs/execution_providers/QNN-ExecutionProvider.md
Lines 37 to 40 in 5789ddc
Collaborator
Will be updated as part of this PR: QAIRT 2.45.0 Uplevel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ort_coreincmake/deps.txtfrom v1.24.1 to v1.24.4 (new SHA1:c05dbfeb4841d9d1d0760ddb26d30d6d24352a67)ort_prebuiltversion anchor inqcom/packages.ymlfrom 1.24.1 to 1.24.4 (applies to all platforms: windows_x64, windows_arm64, linux_x64, linux_aarch64)Motivation
There was a version mismatch in ORT dependencies for the Plugin EP build:
requirements.txtspecifiesonnxruntime >= 1.24.2cmake/deps.txtwas pinned toort_core = 1.24.1This caused
onnxruntime.dllto be built as v1.24.1 despite the project requiring a newer version, leading to potential runtime validation issues. This PR resolves the mismatch by upleveling to v1.24.4 as part of the ORT QNN EP 2.1.0 release.