Android SoC benchmarking CLI for latency, loaded latency, and memory subsystem characterization
Project description
BenchmarkingCLI
A command-line tool for running latency benchmarks on Android devices. This tool automates the process of pushing benchmark binaries to connected Android devices, executing latency tests, and collecting performance metrics in CSV format.
Features
- Latency Testing: Measure memory latency across different buffer sizes on a specific core
- Loaded Latency Testing (v0.3+): Measure latency under concurrent bandwidth loads with configurable kernel modes and thread settings
- GPU Loaded Latency Testing (v0.4+): Measure memory latency under concurrent GPU load
- CSV Export: Results are automatically parsed and exported to timestamped CSV files
- CLI Interface: Easy-to-use command-line interface
Requirements
Host Machine
- Python: 3.8 or higher
- Android Debug Bridge (ADB): Version 1.0.40+
- Linux:
apt-get install android-tools-adb - macOS:
brew install android-platform-tools - Windows: Download the SDK Platform Tools and add to PATH
- Verify installation:
adb version
- Linux:
Android Device
- USB debugging must be enabled on the device. To enable it:
- Go to Settings → About Phone
- Tap Build Number 7 times until you see "You are now a developer"
- Go to Settings → Developer Options
- Enable USB Debugging
- Connect the device via USB and accept the "Allow USB Debugging" prompt on the device
- Confirm the device is detected:
adb devices
Installation
Install directly from PyPI:
pip install benchmarkingcli
Usage
Latency Test
Run a basic latency benchmark on a specific core:
# Run on default core (7)
benchmarkingcli latency
# Run on a specific core
benchmarkingcli latency --core 4
Parameters:
--core: CPU core to run the latency test on (default: 7)--output-dir: Directory to save results (default: current directory)
Output
Results are exported as CSV files with the following columns:
buffer_size_kb: Size of the buffer tested (in KB)min_ns: Minimum latency (nanoseconds)mean_ns: Mean latency (nanoseconds)max_ns: Maximum latency (nanoseconds)
Example output file: latency_results_20260427_115540.csv
Loaded Latency Test (v0.3+)
Run a latency benchmark under concurrent bandwidth load:
# Run with default settings
benchmarkingcli loadedlatency
# Run with custom configuration
benchmarkingcli loadedlatency --lat-buffer-mb 128 --bw-buffer-mb 128 --latency-core 7 --bw-cores 0,1,2,3 --kernel-mode TRIAD --ilp 4 --injection-rate desc --output-dir ./results
Parameters:
--lat-buffer-mb: Latency buffer size in MB (default: 128)--bw-buffer-mb: Bandwidth buffer size in MB (default: 128)--latency-core: Core to run latency thread on (default: 7)--bw-cores: Comma-separated cores for bandwidth threads (default: 0,1,2,3,4,5)--kernel-mode: Kernel mode: SUM/COPY/UPDATE/TRIAD or 1/2/3/4 (default: TRIAD)--ilp: Unroll factor: 1/2/4/8/16/32 (default: 4)--injection-rate: Injection rate: asc or desc (default: asc)--output-dir: Directory to save results (default: current directory)
Important Update (v0.4+): The
--tile-delay-sweep-orderparameter has been renamed to--injection-rate. Supported values areascanddesc.
GPU Loaded Latency Test (v0.4+)
Run a latency benchmark under concurrent GPU load:
# Run with default settings
benchmarkingcli gpuloadedlatency
# Run with custom configuration
benchmarkingcli gpuloadedlatency --latency-core 7 --lat-buffer-mb 128 --gpu-buffer-mb 128 --kernel-mode TRIAD --output-dir ./results
Parameters:
--latency-core: Core to run latency thread on (default: 7)--lat-buffer-mb: Latency buffer size in MB (default: 128)--gpu-buffer-mb: GPU workload buffer size in MB (default: 128)--kernel-mode: Kernel mode: SUM/COPY/UPDATE/TRIAD or 1/2/3/4 (default: TRIAD)--output-dir: Directory to save results (default: current directory)
Troubleshooting
"No ADB devices found"
- Check that your Android device is connected:
adb devices - Ensure USB debugging is enabled on the device
- Try:
adb kill-serverthenadb start-server
"Latency test binary not found"
- Reinstall the package:
pip install --force-reinstall benchmarkingcli
Binary push fails
- Check device storage:
adb shell df /data/local/tmp - Verify ADB permissions:
adb shell ls -la /data/local/tmp
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file benchmarkingcli-0.4.2.tar.gz.
File metadata
- Download URL: benchmarkingcli-0.4.2.tar.gz
- Upload date:
- Size: 2.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33bfcd9abe8ad4fb69782f06639fa2ec3f721360ae11f04226c90ccb68abb39
|
|
| MD5 |
b93c3506e21ffc552f1a2c7d279252a1
|
|
| BLAKE2b-256 |
27150de58fd9ce0f5a7e5f5713a08507fff726e20c08155bcf39bfe186232e43
|
File details
Details for the file benchmarkingcli-0.4.2-py3-none-any.whl.
File metadata
- Download URL: benchmarkingcli-0.4.2-py3-none-any.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa73e9d2f67d0674346c38466c936bea718886aadc737f73c44ecf612c128418
|
|
| MD5 |
e2910d95505941fd6074fba2267a7862
|
|
| BLAKE2b-256 |
83c960d43e3a405954e3a3b6fdc04f77b58eba0c6159c0141b5832abd2fd481a
|