benchmarking: add performance measurement and evaluation tools - #1064
Open
Vaibhav-Qualcomm wants to merge 4 commits into
Open
benchmarking: add performance measurement and evaluation tools#1064Vaibhav-Qualcomm wants to merge 4 commits into
Vaibhav-Qualcomm wants to merge 4 commits into
Conversation
Add recipes for a set of benchmark and performance evaluation tools commonly used to measure CPU, memory, network, and web server performance. - coremark-pro provides a comprehensive benchmark suite from EEMBC that evaluates processor performance using integer, floating-point, and real-world workloads. - ramspeed-smp measures memory bandwidth and latency across multiple CPU cores. - sockperf provides network latency and throughput benchmarking for TCP and UDP workloads. - wrk2 generates HTTP workloads with constant throughput and is useful for web server and service performance testing. The recipes have been successfully built and validated on aarch64 targets. Functional testing confirmed that the benchmark binaries execute correctly and produce expected results. Signed-off-by: Vaibhav Jindal <vaibjind@qti.qualcomm.com>
Add a recipe for UnixBench, a benchmark suite used to measure CPU, memory, and overall system performance. The recipe has been successfully built and validated on aarch64 targets. Functional testing confirmed that the benchmark suite executes correctly and generates results. Signed-off-by: Vaibhav Jindal <vaibjind@qti.qualcomm.com>
Add a recipe for hackbench, a Linux scheduler benchmark used to measure scheduling and inter-process communication performance under various workloads. The recipe builds and installs the hackbench executable with NUMA support enabled for use in performance evaluation and regression testing. Signed-off-by: Vaibhav Jindal <vaibjind@qti.qualcomm.com>
Add a recipe for cyclictest from the rt-tests project, a real-time latency measurement tool used to evaluate Linux kernel scheduler latency and jitter under various workloads. The recipe builds and installs the cyclictest executable with NUMA support enabled for use in real-time performance evaluation, latency analysis, and regression testing. Signed-off-by: Vaibhav Jindal <vaibjind@qti.qualcomm.com>
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 series adds recipes for a collection of benchmarking,
performance analysis, and real-time evaluation tools to
meta-openembedded.
Added recipes:
cyclictest
hackbench
unixbench
coremark-pro
integer, floating-point, and real-world workloads
ramspeed-smp
sockperf
wrk2
service performance evaluation
All recipes have been successfully built and validated on aarch64
targets. Functional testing confirmed that the installed binaries
execute correctly and produce expected benchmark results.
Signed-off-by: Vaibhav Jindal vaibjind@qti.qualcomm.com