When I run tests without locking CPU core frequency changes, I get different results every time. But once I completely lock the frequency at a single level, the test results become stable.
I'd like to know how the test server is currently configured.
ChatGPT advises me to do this:
# disable CPU boost
echo 0 | sudo tee /sys/devices/system/cpu/cpufreq/boost
echo 0 | sudo tee /sys/devices/system/cpu/cpufreq/policy*/boost
# lock CPU freq
cpupower frequency-set -g performance
cpupower frequency-set -u 2.7GHz
cpupower frequency-set -d 2.7GHz
# activate passive mode
echo passive | sudo tee /sys/devices/system/cpu/amd_pstate/status
cpupower frequency-set -g userspace
cpupower frequency-set -f 2700000
@MDA2AV , and how do the framework and utility gcannon currently share CPU resources?
When I run tests without locking CPU core frequency changes, I get different results every time. But once I completely lock the frequency at a single level, the test results become stable.
I'd like to know how the test server is currently configured.
ChatGPT advises me to do this:
@MDA2AV , and how do the framework and utility
gcannoncurrently share CPU resources?