adds engine benchmark to integration tests - #2481
Open
Prathik Rao (prathikr) wants to merge 26 commits into
Open
adds engine benchmark to integration tests#2481Prathik Rao (prathikr) wants to merge 26 commits into
Prathik Rao (prathikr) wants to merge 26 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a dedicated Azure Pipelines integration stage to build and run the native Engine benchmark on Linux (H100 pool), defaulting to the smoke-test.json benchmark config and optionally running the full config.json suite via a new pipeline parameter. This integrates benchmark execution into the existing integration-tests pipeline flow.
Changes:
- Link
engine_benchmarkagainstThreads::Threadsin the benchmark CMake target. - Introduce a new integration job template that builds the benchmark binary, exports required HF models via the in-repo builder, runs the benchmark, and publishes results.
- Wire the new “Engine Benchmark” stage into the integration pipeline templates and add a
run_full_engine_benchmarkboolean parameter to control config selection.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
benchmark/engine/CMakeLists.txt |
Ensures the benchmark executable links thread support explicitly. |
.pipelines/stages/jobs/integration-engine-benchmark-job.yml |
New job template to build models + run the engine benchmark in a CUDA container and publish outputs. |
.pipelines/stages/integration-stage.yml |
Adds an Engine Benchmark stage to the shared integration stage template. |
.pipelines/integration-tests.yml |
Adds run_full_engine_benchmark pipeline parameter and passes it into the stage template. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
added 14 commits
August 27, 2026 12:53
…hmark-to-integration-tests
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.
By default, the pipeline runs the
smoke test config which uses qwen2.5-0.5b-instruct.
Select Run Full Engine Benchmark to run the
full benchmark config with qwen2.5-1.5b-instruct + qwen2.5-7b-instruct.
Also contains some bug fixes to get the benchmarking pipeline running w/ H100 CI machine.