run.sh 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/bin/bash
  2. #
  3. # This test runs on Intel x86 based hardware which support the intel_pstate
  4. # driver. The test checks the frequency settings from the maximum turbo
  5. # state to the minimum supported frequency, in decrements of 100MHz. The
  6. # test runs the aperf.c program to put load on each processor.
  7. #
  8. # The results are displayed in a table which indicate the "Target" state,
  9. # or the requested frequency in MHz, the Actual frequency, as read from
  10. # /proc/cpuinfo, the difference between the Target and Actual frequencies,
  11. # and the value of MSR 0x199 (MSR_IA32_PERF_CTL) which indicates what
  12. # pstate the cpu is in, and the value of
  13. # /sys/devices/system/cpu/intel_pstate/max_perf_pct X maximum turbo state
  14. #
  15. # Notes: In some cases several frequency values may be placed in the
  16. # /tmp/result.X files. This is done on purpose in order to catch cases
  17. # where the pstate driver may not be working at all. There is the case
  18. # where, for example, several "similar" frequencies are in the file:
  19. #
  20. #
  21. #/tmp/result.3100:1:cpu MHz : 2899.980
  22. #/tmp/result.3100:2:cpu MHz : 2900.000
  23. #/tmp/result.3100:3:msr 0x199: 0x1e00
  24. #/tmp/result.3100:4:max_perf_pct 94
  25. #
  26. # and the test will error out in those cases. The result.X file can be checked
  27. # for consistency and modified to remove the extra MHz values. The result.X
  28. # files can be re-evaluated by setting EVALUATE_ONLY to 1 below.
  29. EVALUATE_ONLY=0
  30. max_cpus=$(($(nproc)-1))
  31. # compile programs
  32. gcc aperf.c -Wall -D_GNU_SOURCE -o aperf -lm
  33. [ $? -ne 0 ] && echo "Problem compiling aperf.c." && exit 1
  34. gcc -o msr msr.c -lm
  35. [ $? -ne 0 ] && echo "Problem compiling msr.c." && exit 1
  36. function run_test () {
  37. file_ext=$1
  38. for cpu in `seq 0 $max_cpus`
  39. do
  40. echo "launching aperf load on $cpu"
  41. ./aperf $cpu &
  42. done
  43. echo "sleeping for 5 seconds"
  44. sleep 5
  45. num_freqs=$(cat /proc/cpuinfo | grep MHz | sort -u | wc -l)
  46. if [ $num_freqs -le 2 ]; then
  47. cat /proc/cpuinfo | grep MHz | sort -u | tail -1 > /tmp/result.$1
  48. else
  49. cat /proc/cpuinfo | grep MHz | sort -u > /tmp/result.$1
  50. fi
  51. ./msr 0 >> /tmp/result.$1
  52. max_perf_pct=$(cat /sys/devices/system/cpu/intel_pstate/max_perf_pct)
  53. echo "max_perf_pct $max_perf_pct" >> /tmp/result.$1
  54. for job in `jobs -p`
  55. do
  56. echo "waiting for job id $job"
  57. wait $job
  58. done
  59. }
  60. #
  61. # MAIN (ALL UNITS IN MHZ)
  62. #
  63. # Get the marketing frequency
  64. _mkt_freq=$(cat /proc/cpuinfo | grep -m 1 "model name" | awk '{print $NF}')
  65. _mkt_freq=$(echo $_mkt_freq | tr -d [:alpha:][:punct:])
  66. mkt_freq=${_mkt_freq}0
  67. # Get the ranges from cpupower
  68. _min_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $1 } ')
  69. min_freq=$(($_min_freq / 1000))
  70. _max_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $2 } ')
  71. max_freq=$(($_max_freq / 1000))
  72. for freq in `seq $max_freq -100 $min_freq`
  73. do
  74. echo "Setting maximum frequency to $freq"
  75. cpupower frequency-set -g powersave --max=${freq}MHz >& /dev/null
  76. [ $EVALUATE_ONLY -eq 0 ] && run_test $freq
  77. done
  78. echo "=============================================================================="
  79. echo "The marketing frequency of the cpu is $mkt_freq MHz"
  80. echo "The maximum frequency of the cpu is $max_freq MHz"
  81. echo "The minimum frequency of the cpu is $min_freq MHz"
  82. cpupower frequency-set -g powersave --max=${max_freq}MHz >& /dev/null
  83. # make a pretty table
  84. echo "Target Actual Difference MSR(0x199) max_perf_pct"
  85. for freq in `seq $max_freq -100 $min_freq`
  86. do
  87. result_freq=$(cat /tmp/result.${freq} | grep "cpu MHz" | awk ' { print $4 } ' | awk -F "." ' { print $1 } ')
  88. msr=$(cat /tmp/result.${freq} | grep "msr" | awk ' { print $3 } ')
  89. max_perf_pct=$(cat /tmp/result.${freq} | grep "max_perf_pct" | awk ' { print $2 } ' )
  90. if [ $result_freq -eq $freq ]; then
  91. echo " $freq $result_freq 0 $msr $(($max_perf_pct*3300))"
  92. else
  93. echo " $freq $result_freq $(($result_freq-$freq)) $msr $(($max_perf_pct*$max_freq))"
  94. fi
  95. done
  96. exit 0