Fix KeyError in verbose mode when common workload has unparseable JSON#136
Draft
Copilot wants to merge 2 commits intoprosenj_cli_hq_eval_report_phase_2from
Draft
Fix KeyError in verbose mode when common workload has unparseable JSON#136Copilot wants to merge 2 commits intoprosenj_cli_hq_eval_report_phase_2from
Copilot wants to merge 2 commits intoprosenj_cli_hq_eval_report_phase_2from
Conversation
…ata keys intersection Co-authored-by: prosenjitdhole <239307697+prosenjitdhole@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Address feedback on AORTA-23 for CLI updates
Fix KeyError in verbose mode when common workload has unparseable JSON
Mar 6, 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.
commonis derived from file presence viafind_common_workloads(), butbaseline_data/test_datafromload_comparison_data()silently drop files that fail to parse. Iterating overcommonin verbose mode could therefore hit aKeyErrorfor any workload whose JSON exists on disk but is invalid.Changes
hwqueue_pipeline.py: Replacefor wl_name in commonwithfor wl_name in baseline_data.keys() & test_data.keys()in the verbose summary loop, restricting iteration to workloads successfully loaded in both datasets.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.