1# CPU test loads 2 3These are a collection of simple workloads designed to induce various levels of power consumption on the CPU and memory subsystems of an SOC. All of these workloads run in an infinite loop and are designed to be measured across a fixed duration. They are not benchmarks and provide no information about the performance of various cores; they are only designed to generate different amounts of load for the purposes of measuring power consumption. 4 5## Workloads 6 7- `simd` is a large double-precision matrix multiplication using Eigen 8- `memcpy` copies a 1GB buffer to a second 1GB buffer using bionic `memcpy` 9- `memcpy-16kb` copies a 16KB buffer to a second 16KB buffer using bionic `memcpy` 10- `memcpy-2048kb` copies a 2048KB buffer to a second 2048KB buffer using bionic `memcpy` 11- `memcpy-byte` copies a 1GB buffer to a second 1GB buffer using byte assignment 12- `while-true` stalls at a `while (true);`, which becomes an unconditional branch to the same instruction 13- `pss` allocates a 1GB buffer and repeatedly measures the process's PSS 14 15## Usage 16 171. Build the tests for a given device with `mm`. 182. Push the tests to the device; usually this is something like 19 20``` 21adb push out/target/product/<device target>/system/bin/simd /data/local/tmp 22``` 23 243. Prepare the device to run the test. This usually means stopping the framework, locking a sustainable CPU frequency, and moving the shell to a cpuset containing only a single core. For example: 25 26``` 27stop 28mkdir /dev/cpuset/cpu7 29echo 0 > /dev/cpuset/cpu7/mems 30echo 7 > /dev/cpuset/cpu7/cpus 31echo $$ > /dev/cpuset/cpu7/cgroup.procs 32 33cat /sys/devices/system/cpu/cpu7/cpufreq/scaling_available_frequencies 34# 500000 851000 984000 1106000 1277000 1426000 1582000 1745000 1826000 2048000 2188000 2252000 2401000 2507000 2630000 2704000 2802000 2850000 35echo 1826000 > /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq 36echo 1826000 > /sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq 37``` 38 394. Run the tests on the device; there are no arguments. 405. Measure power somehow. On a device with ODPM capabilities, this could be something like 41 42``` 43dumpsys android.hardware.power.stats.IPowerStats/default | tail -27 && sleep 120 && killall memcpy-2048kb && echo "done" && dumpsys android.hardware.power.stats.IPowerStats/default | tail -27 44``` 45 46from a separate `adb shell` to the shell running the test. Alternately, a breakout board with per-rail measurements or a separate battery monitor could be used. 47