https://github.com/plsyssec/wasm-runtime-benchmarks
I/O-heavy benchmarks for testing wasm runtimes
https://github.com/plsyssec/wasm-runtime-benchmarks
Last synced: 10 months ago
JSON representation
I/O-heavy benchmarks for testing wasm runtimes
- Host: GitHub
- URL: https://github.com/plsyssec/wasm-runtime-benchmarks
- Owner: PLSysSec
- License: mit
- Created: 2021-11-29T17:35:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T21:01:13.000Z (over 2 years ago)
- Last Synced: 2025-03-02T01:44:05.678Z (over 1 year ago)
- Language: Python
- Size: 43.9 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wasm-runtime-benchmarks
I/O-heavy benchmarks for testing wasm runtimes
Run benchmarks as root to use "nice" to improve stability of measurements
## Some misc benchmarking commands to keep around
### Disabling turboboost
echo 1 > /sys/devices/system/cpu/intel\_pstate/no\_turbo
to restore: echo 0 > /sys/devices/system/cpu/intel\_pstate/no\_turbo
### Disabling logical CPUs
echo 0 > /sys/devices/system/cpu/cpu4/online
to restore: echo 1 > /sys/devices/system/cpu/cpu4/online
### Disabling dynamic frequency scaling
echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
to restore: echo powersave > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor