Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the ONNXRuntime session configuration used by tools/accuracy/accuracy_checker.py to avoid a known ONNXRuntime crash triggered by higher graph optimization levels (e.g., ORT_ENABLE_ALL) on certain transformer ONNX models during CI.
Changes:
- Set
onnxruntime.SessionOptions.graph_optimization_leveltoORT_ENABLE_BASICfor ONNX sessions created by the accuracy checker.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
TedThemistokleous
approved these changes
Mar 23, 2026
kahmed10
approved these changes
Mar 23, 2026
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.
Motivation
These files cannot be executed correctly during CI
Here is Error output:
Technical Details
This defect is related to the level of graph optimization when the level setting is as default or ORT_ENABLE_ALL, since SimplifiedLayerNormFusion will be triggered by ORT_ENABLE_ALL setting. This is a workaround as replacing ORT_ENABLE_ALL
to ORT_ENABLE_BASIC. The latest ORT(1.23.2) via pip is impacted.
One issue thread on Microsoft’s OnnxRT public repro had been created for this similar issue. #26717 Microsoft's OnnxRT