|
|
@ -151,8 +151,8 @@ function summarize_result { |
|
|
|
stall_pct=$( grep "^Cumulative stall" $test_out| tail -1 | awk '{ print $5 }' ) |
|
|
|
stall_pct=$( grep "^Cumulative stall" $test_out| tail -1 | awk '{ print $5 }' ) |
|
|
|
ops_sec=$( grep ^${bench_name} $test_out | awk '{ print $5 }' ) |
|
|
|
ops_sec=$( grep ^${bench_name} $test_out | awk '{ print $5 }' ) |
|
|
|
mb_sec=$( grep ^${bench_name} $test_out | awk '{ print $7 }' ) |
|
|
|
mb_sec=$( grep ^${bench_name} $test_out | awk '{ print $7 }' ) |
|
|
|
lo_wgb=$( grep "^ L0" $test_out | tail -1 | awk '{ print $8 }' ) |
|
|
|
lo_wgb=$( grep "^ L0" $test_out | tail -1 | awk '{ print $9 }' ) |
|
|
|
sum_wgb=$( grep "^ Sum" $test_out | tail -1 | awk '{ print $8 }' ) |
|
|
|
sum_wgb=$( grep "^ Sum" $test_out | tail -1 | awk '{ print $9 }' ) |
|
|
|
sum_size=$( grep "^ Sum" $test_out | tail -1 | awk '{ printf "%.1f", $3 / 1024.0 }' ) |
|
|
|
sum_size=$( grep "^ Sum" $test_out | tail -1 | awk '{ printf "%.1f", $3 / 1024.0 }' ) |
|
|
|
wamp=$( echo "scale=1; $sum_wgb / $lo_wgb" | bc ) |
|
|
|
wamp=$( echo "scale=1; $sum_wgb / $lo_wgb" | bc ) |
|
|
|
wmb_ps=$( echo "scale=1; ( $sum_wgb * 1024.0 ) / $uptime" | bc ) |
|
|
|
wmb_ps=$( echo "scale=1; ( $sum_wgb * 1024.0 ) / $uptime" | bc ) |
|
|
|