-
Notifications
You must be signed in to change notification settings - Fork 144
feat(l1): add target and script to run multiple benchmark runs #5368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds automation for running multiple benchmark iterations by introducing a shell script and a new Makefile target. The goal is to streamline the process of running repeated import benchmarks with automatic log file numbering.
- Adds
benchmark.shscript to automate multiple benchmark runs with sequential log numbering - Introduces
run-benchesMakefile target as a convenient wrapper for the script - Enables running 3 benchmark iterations by default using the existing benchmark infrastructure
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| tooling/import_benchmark/benchmark.sh | New shell script that runs multiple benchmark iterations with automatic log file numbering and cleanup |
| tooling/import_benchmark/Makefile | Adds run-benches target to invoke the benchmark script with 3 repetitions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Benchmark Block Execution Results Comparison Against Main
|
This PR improves `tooling/import_benchmark` by adding a target that runs multiple repetitions of the same benchmark.
This PR improves
tooling/import_benchmarkby adding a target that runs multiple repetitions of the same benchmark.