Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1caed4e
Adding Get plumbing and supporting infrastructure to call it as part …
Jul 31, 2025
6543edd
Validation stubs for EP factory
Aug 1, 2025
ac1a64c
Add validation method to IExecutionProvider
Aug 1, 2025
3a9e9c0
Attempt at session enfrocement
Aug 5, 2025
08e47fc
Add session option for precompiled-but-suboptimal and enforce in sess…
Aug 5, 2025
0d7febe
Adding unit test cases
Aug 5, 2025
770aece
WIP but tests still broken
Aug 9, 2025
407d0a2
Merge branch 'main' into adrastogi/model-compat
Aug 9, 2025
2603892
Back to where we were
Aug 9, 2025
b022a10
Tests passing
Aug 10, 2025
998da90
Update include/onnxruntime/core/framework/execution_provider.h
adrastogi Aug 14, 2025
297d074
Update onnxruntime/core/session/plugin_ep/ep_factory_internal_impl.h
adrastogi Aug 14, 2025
6544617
Lintrunner local run
Aug 14, 2025
741f387
Merge branch 'adrastogi/model-compat' of https://github.com/Microsoft…
Aug 14, 2025
e3551ce
Merge branch 'main' into adrastogi/model-compat
Aug 19, 2025
5ac17d7
PR feedback (add guards to fix CI build error for minimal builds)
Aug 19, 2025
ed2a54f
Ensure GetCompatibilityStatusString isn't used in minimal builds
Aug 19, 2025
52f3884
PR feedback (fix placement of compatibility string generation, loggin…
Aug 19, 2025
0e3ee2e
PR feedback (ensure Validate method is valid, else fall back to base …
Aug 20, 2025
07a3b85
Update onnxruntime/core/session/plugin_ep/ep_plugin_provider_interfac…
adrastogi Aug 20, 2025
bce4093
Merge branch 'main' into adrastogi/model-compat
Aug 21, 2025
009f87b
PR feedback (initialize GraphViewer with ep_graph (*not* graph), and …
Aug 22, 2025
7b73392
PR feedback (early return during validation if there is no custom met…
Aug 22, 2025
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
Prev Previous commit
Next Next commit
PR feedback (initialize GraphViewer with ep_graph (*not* graph), and …
…ensure graph is fully initialized))
  • Loading branch information
Aditya Rastogi committed Aug 22, 2025
commit 009f87bf4b330a4bd44b84b0549f89dc0636b8d5
3 changes: 2 additions & 1 deletion onnxruntime/core/framework/graph_partitioner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,8 @@ static Status CreateEpContextModel(const ExecutionProviders& execution_providers
// Generate EP compatibility strings for OrtEp types and add to model metadata
// At this point, the graph has been populated with all the EPContext nodes
{
const GraphViewer graph_viewer(graph);
ORT_RETURN_IF_ERROR(ep_graph.Resolve());
const GraphViewer graph_viewer(ep_graph);
for (const auto& ep : execution_providers) {
try {
// Generate the compatibility string for this EP
Expand Down
Loading