Introduce QUARK framework integration - #59
Open
armalikhani wants to merge 5 commits into
Open
armalikhani wants to merge 5 commits into
armalikhani wants to merge 5 commits into
Conversation
This was referenced Aug 26, 2026
armalikhani
force-pushed
the
feat/aa/quark-integration
branch
3 times, most recently
from
September 10, 2026 11:45
71e6da1 to
f70557a
Compare
armalikhani
marked this pull request as ready for review
September 10, 2026 12:45
…results, and additional config options - add selected important metrics to QUARK result analysis (`successful_tree_runs`, `successful_pipeline_runs`, `average_runtime`, `average_result`, `additional_metrics`) - add QUARK plotting artifact `results.pdf` to the MBF output - add `result` field to QUARK Results JSON - add `install_plugins` flag to control required plugin installation - add `failfast` flag to control benchmark failure handling - update MBF example configs for the new QUARK parameters - refactor existing `ExecutionResult` to `CircuitExecutionResult` across the framework and update related components for improved clarity and consistency - add `PipelineExecutionRecord` type for pipeline engine execution results - define `ExecutionResult` as a union of `CircuitExecutionResult` and `PipelineEngineExecutionResult` and use it in `PipelineResult.execution_results` - update execution result handling to include raw QUARK execution results in storage and JSON output - add brief per-execution CLI output with `Pipeline`, `Pipeline Status`, `Result`, and `Runtime` to avoid console clutter while keeping the full result available in the stored JSON output - refactor the built-in QUARK plugin to improve and polish the implementation - update tests
armalikhani
force-pushed
the
feat/aa/quark-integration
branch
from
September 14, 2026 18:19
f70557a to
32ee177
Compare
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.
This PR introduces QUARK framework integration into the MQSS Benchmarking Framework as a benchmark pipeline implementation.
Changes
QUARK integration
APPLICATIONbenchmark categoryinstall_pluginsflag to control whether required QUARK plugins are installedfailfastflag to control benchmark failure handlingQUARK result analysis and artifacts
Add selected important metrics to QUARK result analysis:
successful_tree_runssuccessful_pipeline_runsaverage_runtimeaverage_resultadditional_metricsAdd the QUARK plotting artifact
results.pdfto the MBF outputAdd a
resultfield to the QUARK results JSONInclude raw QUARK execution results in stored results and JSON output
Execution result model
ExecutionResulttoCircuitExecutionResultacross the framework for improved clarity and consistencyPipelineExecutionRecordtype for pipeline engine execution resultsExecutionResultas a union ofCircuitExecutionResultandPipelineEngineExecutionResultExecutionResulttype inPipelineResult.execution_resultsCLI output
Add brief per-execution CLI output containing:
PipelinePipeline StatusResultRuntimeKeep detailed execution results available in the stored JSON output to avoid console clutter
Note: The essential extensions to the core MQSS Benchmarking Framework have already been merged into the default branch, including #52. The supplementary changes for the future entry-point-based, pip-installable plugin package and unified plugin system have also been merged in #54, and this branch has been updated accordingly.
This PR focuses on the QUARK integration and its associated result handling. In this version, QUARK is implemented as a built-in plugin. It can later be moved into a pip-installable plugin package.
Additional notes
Note: This version is intentionally limited to the initial QUARK integration. Additional tests, refinements, and improvements will be addressed in a separate PR or as part of the next implementation phase.
Note: Currently, specifying an adapter in the MBF configuration is mandatory. For this version, qiskit_simulator is included in the MBF configuration only to satisfy this requirement and prevent configuration errors. It is not actually used by the QUARK pipeline and effectively serves as a dummy configuration value. Future work will make the adapter field optional in the MBF configuration.
Note: This change modifies the core API. Existing users of previous versions may need minor adaptations to their implementations to remain compatible.
Issues resolved:
closes #64
closes #61
closes #60
closes #9
Future work:
Attachments:
Initial QUARK Integration into the MQSS Benchmarking Framework.pdf