[AI] Gate AMD/OpenVINO setup on actual EP availability#20945
Merged
TurboGit merged 1 commit intodarktable-org:masterfrom May 5, 2026
Merged
[AI] Gate AMD/OpenVINO setup on actual EP availability#20945TurboGit merged 1 commit intodarktable-org:masterfrom
TurboGit merged 1 commit intodarktable-org:masterfrom
Conversation
1 task
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.
Gate AMD MIOpen/MIGraphX cache setup and OpenVINO V2 setup on actual EP availability (
OrtApi::GetAvailableProviders) instead of the/opt/rocmdirectory check.Reported in #20926: on Fedora distro-packaged ROCm (no
/opt/rocm) and side-by-side installs (/opt/rocm-X.Y), the cache env vars were never set, so every launch recompiled MIOpen kernels (10+ minutes on consumer AMD) and the MIGraphX graph.Fix
_ort_has_provider(name)wrappingGetAvailableProviders. Safe to call beforeCreateEnv(does not load any EP)._setup_amd_caches(): replaceg_file_test("/opt/rocm", ...)with_ort_has_provider("MIGraphXExecutionProvider")._try_openvino_with_cache(): add_ort_has_provider("OpenVINOExecutionProvider")before the existing V2 function-pointer check. Both are required - EP must be compiled in and the V2 API must exist.