update
Signed-off-by: Wenchao Hao <haowenchao22@gmail.com>
This commit is contained in:
parent
ca92899c4a
commit
8030647b8e
7
run.sh
7
run.sh
|
|
@ -213,7 +213,12 @@ for round in $(seq 1 $cycle); do
|
|||
minorfaults=$(cat $dir/simpleperf/simpleperf-"$app"-"$round".txt | grep 'minor-faults' | awk '{print $1}' | sed s/,//)
|
||||
majorfaults=$(cat $dir/simpleperf/simpleperf-"$app"-"$round".txt | grep 'major-faults' | awk '{print $1}' | sed s/,//)
|
||||
|
||||
echo $round $app $start_type $start_time $rss $pss $pagefaults $minorfaults $majorfaults $itlbmiss $dtlbmiss $cpustall $inc_ratio $inc_total $order4_ratio $order4_cont>> $dir/result
|
||||
# 计算直接内存回收次数
|
||||
nr_init_direct_reclaim=$(cat $dir/system_mem/after_vmstat-$app-$round | grep pgscan_direct_throttle | awk '{print $2}')
|
||||
nr_direct_reclaim=$(cat $dir/system_mem/before_vmstat-$app-$round | grep pgscan_direct_throttle | awk '{print $2}')
|
||||
nr_inc_direct_reclaim=$((nr_direct_reclaim-nr_init_direct_reclaim))
|
||||
|
||||
echo $round $app $start_type $start_time $rss $pss $pagefaults $minorfaults $majorfaults $itlbmiss $dtlbmiss $cpustall $inc_ratio $inc_total $order4_ratio $order4_cont $nr_inc_direct_reclaim>> $dir/result
|
||||
|
||||
if [ $clear_background -ne 0 ]; then
|
||||
python3 clear_apps.py
|
||||
|
|
|
|||
Loading…
Reference in New Issue