UnixBenchを走らせておいてVMstatを眺めてみる

UnixBenchという伝統的なベンチマークがあり、Linuxでは定番のようなものでググったら山ほど検索結果が出てきます。今までにも何度も使ってきたベンチマークで、KVMの仮想VMのベンチマークの時には何回も使っていましたが、各項目や数値に関しては、おおざっぱにしか取り上げてはいませんでしたので、少しばかり中身を追いかけてみようと思います。

基本事項としてはまず1コアのテストをして、後で実際のコア数の並列テストをする。最近のUnixBenchはそうなってると思われる。
では、各項目に進む。

Dhrystone 2 using register variables  1 2 3 4 5 6 7 8 9 10

ドライストーンは整数演算(浮動小数点演算を覗いたということ)のプログラミングの性能に注目したテストらしく、直訳でもよさげなので直訳すると、2個のレジスタを使った整数演算テストしますという事だろう。1コアの場合と数コアの場合をそれぞれ計10回づつやね。

ところで浮動小数点を少し説明(整数演算のところで浮動小数点の説明も変だけれど)しておくと。

浮動小数点は符号部と仮数部と指数部で表現された数値の表現法によって表現された数の事です。と聞いても記憶にないので、数式で見たらあぁ~と思い出した気がするかもしれない。

1.1030402 × 105 = 110304.02

あぁ~ってなった?数式の左側が浮動小数点方式で、xの右側が指数、左側が仮数。インターネットにプロトコルがあるようにこいつらにも決まりはあるようで、IEEE 754 だとかあるらしい。

ウィキペディアから拝借すると

単精度の場合: (-1) 符号部×2指数部 ‐127 ×(1+仮数部)

という感じらしい。

んで、なんで浮動小数点演算と整数演算を分けてベンチるのかというと、CPUではその2つの計算は別系統なのだ。

だっふんだ。

Double-Precision Whetstone  1 2 3 4 5 6 7 8 9 10

続いてウェットストーン。で、これが浮動小数点演算です。さっき説明したので省略しますが、Double Precison てのは倍精度の事で、浮動小数点方式には半精度、単精度、倍精度、四倍精度とあって、そのなかの倍精度。

さっき出てきたIEEE754だと、符号部 1 ビット ・ 指数部 11 ビット ・ 仮数部 52 ビットの64ビットが倍精度。その半分が単精度で32ビットです。

浮動小数点演算と言えば、複雑な計算だったり、でかい数値を扱う計算とか座標計算とかとか。座標計算と言っても、空間移動とかビームを跳ね返したりとかじゃなくて、身近なところだと3Dゲームがゴリゴリ動いているのはこいつがゴリゴリ動いているはずで。ゲームに限らず科学技術的な計算がこいつの役目だろう。

反対に整数演算は表計算ソフトとかビジネスソフトの処理でゴリゴリ動いていると思っておけば分かりやすいかもしれない。あれ、反対かな。ビジネスソフトとかで整数演算をゴリゴリ行っている。まぁどっちでもいいか。

Execl Throughput  1 2 3

Cの関数でExecというのがありますが、それにLがついたものです。同じように考えてもいいかなぁと思います。んで、これはシステムコールですが、execlを何回くりかえせるかっていうベンチ。システムコールはカーネルに渡すもんだし、OSとCPUの性能を見れるのかな。

 File Copy 1024 bufsize 2000 maxblocks  1 2 3
File Copy 256 bufsize 500 maxblocks  1 2 3
File Copy 4096 bufsize 8000 maxblocks  1 2 3

これは名前のまんまで、2Mを1Mごと、500Kを256Kごと、8Mを4Mごとに処理するのですが、容量を見て分かるようにCPUのキャッシュとメモリで事足りるので、ディスクの性能は測れませぬ。

ちなみに過去に悩んでた事ですが、FreeBSDとソラリスで何故か低い結果がでるのだね。

Pipe Throughput  1 2 3 4 5 6 7 8 9 10

名前のごとくパイプライン処理の性能を測るものと思われます。パイプライン処理ってのは男性よりも女性の方が得意とされている、洗濯と掃除と料理と電話を同時におこなうあれの事です。

Pipe-based Context Switching  1 2 3 4 5 6 7 8 9 10

コンテキストスイッチ、すなわち切り替えです。プロセスの切り替えがどれだけできるかの性能評価ですな。

Process Creation  1 2 3

さっきはexecが出てきましたが、今回はForkです。

だんだん説明が短くなってますが、手抜きではない!

System Call Overhead  1 2 3 4 5 6 7 8 9 10

これもまた名前のままで特に説明不要な感じもしますが、getpidを繰り返しているそうです。
オーバーヘッドが少ないほど数をこなせるってことだね。

Shell Scripts (1 concurrent)  1 2 3
Shell Scripts (8 concurrent)  1 2 3

その名の通りシェルスクリプトを実行!な訳だが何をしてまんねん。

runs “looper 60 multi.sh 1”

ってことでソースを見る。

$ cat unixbench-5.1.2/pgms/multi.sh
#! /bin/sh
ID="@(#)multi.sh:3.4 -- 5/15/91 19:30:24";
instance=1
while [ $instance -le $1 ]; do
        /bin/sh "$UB_BINDIR/tst.sh" &
        instance=`expr $instance + 1`
done
wait
# cat unixbench-5.1.2/pgms/tst.sh
#! /bin/sh
ID="@(#)tst.sh:3.4 -- 5/15/91 19:30:24";
sort >sort.$$ <sort.src
od sort.$$ | sort -n -k 1 > od.$$
grep the sort.$$ | tee grep.$$ | wc > wc.$$
rm sort.$$ grep.$$ od.$$ wc.$$

コメントアウトのところは削りました。

こんな感じのスクリプトをループさせているようで、これはLinuxよりFreeBSDが速かった気がします。

では、お待ちかねのvmstatの結果にいきたいと思います。結構いいことを思いついたと思ったんだけれど、全然大したことなかった。(´・ω・`)
メモリもディスクも使わないので、vmstatの見た目は全くしょぼーんです。

面白いところというと、CPUのuserが多く使われていたり、sysが多く使われていたり、さっきの説明のところと照らし合わせて確認してみると今ここだなとか、分かりやすいと思います。

全体を通してみるよりも、vmstatを走らせといて、UnixBenchを各ベンチを個別に実行する方が挙動の確認はしやすいね。

なんて言いながら、全体的にはこんな感じでした。で終わろうとしているw
お楽しみは各自でやってみよう。

ドライストーン、ウェットストーンはuserが高くなり、システムコールやパイプ処理をするところはsystemが高くなります。
コンテキストスイッチはもろに出ていますが、systemのcsがそれに当たります。
ちなみに左のinは割り込みです。
最後のシェルスクリプトの並走はかなりCPU待ちが出てしまってますね。
って、楽しみを書いちゃったよ。
io の負荷が見たいなら dd コマンドとかのスクリプトを使うのがいいんだろうね。

# sudo vmstat 5
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 134140 176312 1116892    0    0     0   295 2108  169 100  0  0  0  0
 0  0  40768 135584 176312 1116892    0    0     0    19 1889  122 91  0  8  0  0
 2  0  40768 134972 176312 1116892    0    0     0    10 1042  138 47  0 52  0  0
 2  0  40768 134624 176312 1116892    0    0     0   210 2059  140 100  0  0  0  0
 0  0  40768 135772 176312 1116892    0    0     0    21 1153  139 53  1 47  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 134376 176312 1116892    0    0     0   238 1792  147 86  0 14  0  0
 2  0  40768 134384 176312 1116892    0    0     0    16 2048  122 100  0  0  0  0
 2  0  40768 134888 176312 1116892    0    0     0   302  899  176 39  1 60  0  0
 4  0  40768 132660 176312 1116900    0    0     0   646 2113  533 99  1  0  0  0
 0  0  40768 135668 176312 1116900    0    0     0  1067 1752  450 78  2 20  0  0
 2  0  40768 134128 176316 1116900    0    0     0    14 1363  161 64  0 36  0  0
 3  0  40768 133260 176328 1116896    0    0     0   491 2107  174 100  1  0  0  0
 3  0  40768 134756 176332 1116936    0    0     1   364 1168  260 50  1 49  0  0
 2  0  40768 114208 176336 1116952    0    0     2   599 2055  232 99  1  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 1  0  40768 115348 176344 1116948    0    0     0    72 2025  126 98  0  2  0  0
 2  0  40768 114488 176388 1116952    0    0     0   756 1233  480 48  1 50  1  0
 2  0  40768 114404 176388 1116952    0    0     0     8 2040  102 100  0  0  0  0
 0  0  40768 115172 176388 1116976    0    0     1   392 1576  243 71  1 27  0  0
 2  0  40768 114404 176392 1116976    0    0     0   152 1588  135 76  0 24  0  0
 2  0  40768 114164 176396 1116976    0    0     1   234 2052  214 100  0  0  0  0
 2  0  40768 112924 176400 1116992    0    0     0   660 1127  238 49  1 50  0  0
 2  0  40768 112224 176404 1116992    0    0     0   475 2082  348 99  1  0  0  0
 0  0  40768 114024 176404 1117004    0    0     0   331 1800  207 85  1 14  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 112016 176408 1117004    0    0     0    55 1249  219 54  1 45  0  0
 2  0  40768 112652 176408 1117004    0    0     0   203 2075  145 100  0  0  0  0
 0  0  40768 113932 176412 1117012    0    0     0   333 1196  213 54  1 45  0  0
 2  0  40768 113148 176416 1117012    0    0     0   298 1900  145 92  0  8  0  0
 3  0  40768 112304 176416 1117012    0    0     0   221 2057  229 100  0  0  0  0
 1  0  40768 112684 176420 1117012    0    0     0   412 2043  159 99  0  1  0  0
 2  0  40768 112436 176420 1117016    0    0     0    47  891  140 39  1 60  0  0
 2  0  40768 112436 176424 1117016    0    0     0   204 2096  142 100  0  0  0  0
 2  0  40768 112312 176424 1117016    0    0     0   256 2052  187 100  0  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 110192 176428 1116940    0    0     0   950 2041  497 94  2  5  0  0
 2  0  40768 112012 176436 1116956    0    0     0  1122 1911  415 88  2 10  0  0
 2  0  40768 112060 176444 1116980    0    0     0   158 2057  168 99  1  0  0  0
 2  0  40768 111472 176444 1116980    0    0     0    49 2080  179 100  0  0  0  0
 2  0  40768 113008 176444 1116980    0    0     0   490  915  169 39  1 60  0  0
 2  0  40768 113016 176444 1116980    0    0     0    13 2044  112 100  0  0  0  0
 2  0  40768 113008 176444 1116980    0    0     0   216 2047  128 100  0  0  0  0
 0  0  40768 113932 176448 1116984    0    0     0    24 1100  124 51  1 49  0  0
 2  0  40768 113156 176452 1116984    0    0     0   151 1788  139 86  0 14  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 112792 176452 1116984    0    0     0     7 2038  104 100  0  0  0  0
 0  0  40768 114188 176452 1116984    0    0     0   209 1724  163 80  0 20  0  0
 2  0  40768 113288 176460 1116980    0    0     0    18 1247  117 59  0 41  0  0
 2  0  40768 112116 176460 1116984    0    0     0   470 2048  232 99  1  0  0  0
 2  0  40768 112512 176460 1116984    0    0     0   298 2055  221 100  1  0  0  0
 2  0  40768 113164 176476 1116988    0    0     0   322  906  212 38  1 61  0  0
 2  0  40768 111668 176476 1116988    0    0     0    46 2083  212 100  0  0  0  0
 2  0  40768 112180 176480 1116988    0    0     0   166 2043  115 100  0  0  0  0
 0  0  40768 114072 176480 1116992    0    0     0    31 1321  118 62  0 38  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 113156 176488 1116992    0    0     0   238 1589  131 76  0 24  0  0
 2  0  40768 113180 176492 1116992    0    0     0     6 2042   97 100  0  0  0  0
 2  0  40768 112924 176496 1116992    0    0     1   354 2052  183 100  1  0  0  0
 2  0  40768 113056 176496 1117004    0    0     0    92  871  139 38  1 62  0  0
 2  0  40768 112808 176512 1117004    0    0     1   368 2061  198 99  1  0  0  0
 2  0  40768 113016 176512 1117016    0    0     0   263 2042  175 100  0  0  0  0
 2  0  40768 114704 176512 1116976    0    0     0   872 2192  548 98  2  0  0  0
 2  0  40768 113432 176512 1116984    0    0     0   889 1691  267 77  1 22  0  0
 2  0  40768 113396 176512 1116984    0    0     0   412 2066  176 100  0  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 113164 176520 1116992    0    0     0    48 2048  149 100  0  0  0  0
 3  0  40768 114156 176520 1117000    0    0     0   543 1073  306 43  4 52  0  0
 2  0  40768 113828 176520 1117040    0    0     1   532 2117  793 37 63  0  0  0
 2  0  40768 113952 176520 1117052    0    0     1   340 2116  707 34 66  0  0  0
 2  0  40768 114000 176520 1117052    0    0     0    16 2121  433 23 77  0  0  0
 2  0  40768 113908 176524 1117052    0    0     0   301 2092  450 22 78  0  0  0
 2  0  40768 113676 176524 1117052    0    0     0   245 2086  637 31 69  0  0  0
 0  0  40768 114916 176528 1117068    0    0     0   350 1850  446 20 67 13  0  0
 2  0  40768 114172 176528 1117068    0    0     0    10 1145  316 13 40 47  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 112976 176528 1117068    0    0     0   516 2322  751 36 63  0  0  0
 3  0  40768 113248 176528 1117068    0    0     0     9 2209  608 29 71  0  0  0
 2  0  40768 113032 176536 1117068    0    0     0   533 2115  626 28 72  0  0  0
 3  0  40768 112164 176536 1117080    0    0     0   320 2125  808 38 62  0  0  0
 2  0  40768 113048 176536 1117088    0    0     1   439 2084  638 32 68  0  0  0
 0  0  40768 114444 176544 1117088    0    0     0    98 1051  305 11 36 53  0  0
 3  0  40768 113140 176548 1117088    0    0     0     3 2015  492 24 69  8  0  0
 2  0  40768 113232 176548 1117112    0    0     0   664 2153  794 39 61  0  0  0
 2  0  40768 113280 176548 1117112    0    0     0    43 2197  456 24 76  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 113164 176548 1117112    0    0     0   347 2179  691 31 69  0  0  0
 2  0  40768 113164 176548 1117116    0    0     0    33 2137  482 24 76  0  0  0
 3  0  40768 113040 176548 1117116    0    0     0   167 2082  586 31 70  0  0  0
 1  0  40768 108548 176552 1117048    0    0     0  1443 1721  667 63  6 31  1  0
 0  0  40768 106348 176576 1119040    0    0     0  2293 1486  466 33 31 35  0  0
 2  0  40768 105752 176576 1119084    0    0     0   158  727  188  2 28 70  0  0
 1  0  40768 106080 176576 1121088    0    0     0   163  996  247  2 39 59  0  0
 1  0  40768 107196 176576 1121088    0    0     0   229 2071  310 15 83  2  0  0
 1  0  40768 106528 176628 1121820    0    0   144   926 2503 2094  6 93  1  1  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 106560 176628 1121820    0    0     0     4 2070  196  2 97  1  0  0
 1  0  40768 106600 176632 1121820    0    0     0   752 2098  268  3 97  0  0  0
 1  0  40768 106600 176632 1121820    0    0     0    16 2086  209  2 97  0  0  0
 0  0  40768 112172 176636 1117824    0    0     0  1292 1686  371 26 52 22  0  0
 0  0  40768  91688 176640 1117824    0    0     0   307  423  193 13  1 85  0  0
 0  0  40768  89596 176644 1119824    0    0     0  1954  920  253  1 40 59  0  0
 0  0  40768  88464 176644 1119832    0    0     0   345 1187  177 19 35 45  0  0
 2  0  40768  86068 176644 1121832    0    0     0    13 1368  198  2 62 36  0  0
 1  0  40768  86316 176648 1121832    0    0     0   474 2168  371 15 84  1  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768  85976 176648 1121840    0    0     1   302 2123  384 15 83  2  0  0
 2  0  40768  86604 176656 1121840    0    0     0   213 2116  269  2 98  0  0  0
 2  0  40768  86628 176656 1121840    0    0     0     6 2071  194  3 97  0  0  0
 1  0  40768  86728 176660 1121840    0    0     0   221 2086  215  3 97  0  0  0
 0  0  40768  91184 176660 1117836    0    0     0    88  851  190  1 36 63  0  0
 2  0  40768  88976 176664 1119836    0    0     0   120  536  183  0 22 78  0  0
 2  0  40768  88364 176664 1119836    0    0     0  1226  494  189  0 19 80  0  0
 1  0  40768  87248 176668 1121204    0    0     0   135  898  168  3 37 60  0  0
 1  0  40768  86628 176668 1121840    0    0     0     5 2083  239  2 98  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 5  0  40768  84784 176676 1121872    0    0     0   824 2197  771 49 51  1  0  0
 1  0  40768  84568 176676 1121912    0    0     0  1104 2060  576 44 53  2  0  0
 2  0  40768  84592 176676 1121912    0    0     0   128 2101  349 16 83  2  0  0
 1  0  40768  83996 176676 1121924    0    0     1   304 2111  314  4 95  1  0  0
 1  0  40768  85556 176676 1121924    0    0     0   542 2079  263  3 97  1  0  0
 0  0  40768  89704 176680 1117920    0    0     0   163  145  160  0  1 99  0  0
 0  0  40768  88656 176688 1118436    0    0     1   835  939  463 14 25 61  0  0
 2  0  40768  88656 176692 1118452    0    0     0   237  994  184 16 29 55  0  0
 3  0  40768  88564 176692 1118952    0    0     0   222  903  293 18 22 60  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 1  0  40768  87320 176700 1119284    0    0    77   774 2103  441 22 76  2  0  0
 1  0  40768  87384 176712 1119284    0    0     0   320 2091  276  3 97  0  0  0
 2  0  40768  87416 176712 1119300    0    0     0    17 2076  252  2 98  0  0  0
 2  0  40768  86572 176712 1119300    0    0     0   308 2062  389 20 78  3  0  0
 1  0  40768  86564 176712 1119300    0    0     0   218 2104  293  3 96  0  0  0
 0  0  40768  89116 176712 1118296    0    0     0   372 1544  305 16 52 32  0  0
 0  0  40768  86836 176728 1118304    0    0     0   347  192  222  1  2 97  0  0
 0  0  40768  87464 176736 1118804    0    0     0   330  925  246  1 40 59  0  0
 0  0  40768  87472 176736 1118808    0    0     0   254  897  158  4 36 60  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768  86828 176736 1119308    0    0     0    14 1569  197  2 70 28  0  0
 2  0  40768  86828 176736 1119308    0    0     0   278 2079  264  3 97  0  0  0
 1  0  40768  86976 176736 1119308    0    0     0    10 2069  214  3 97  0  0  0
 1  0  40768  86852 176744 1119324    0    0     0   194 2085  246  3 97  0  0  0
 1  0  40768  86852 176744 1119324    0    0     0     5 2070  225  3 97  0  0  0
 2  0  40768  86852 176744 1119324    0    0     0   204 2070  225  2 97  0  0  0
 1  0  40768  88332 176744 1118320    0    0     1    94 1013  234 14 29 57  0  0
 1  0  40768  87160 176744 1118832    0    0     0   450  763  284  1 29 70  0  0
 2  0  40768  87184 176744 1118832    0    0     0   292  557  241  1 19 79  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 1  0  40768  86588 176744 1119344    0    0     0   303 1119  193 14 37 49  0  0
 1  0  40768  86480 176744 1119352    0    0     0   461 2071  372 18 81  2  0  0
 3  0  40768  86480 176744 1119352    0    0     0    45 2085  284  9 90  1  0  0
 1  0  40768 110048 176748 1119360    0    0     0   661 2110  378 21 76  3  0  0
 1  0  40768 110056 176756 1119360    0    0     0   252 2084  312 13 86  1  0  0
 2  0  40768 110080 176756 1119368    0    0     0   401 2079  356 15 84  2  0  0
 3  0  40768 112932 176756 1118376    0    0     0   108 2120  384 21 78  1  0  0
 1  0  40768 110108 176764 1118332    0    0     0  2006 1968  540 83  3 13  0  0
 0  0  40768 104096 176764 1126380    0    0     0  3038 1341  451 18 40 41  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 1  1  40768 103980 176764 1126392    0    0     0   702 1213  252 13 39 48  0  0
 2  0  40768  95936 176764 1134392    0    0     0   298 1191  242 12 40 48  0  0
 3  0  40768  96224 176764 1134404    0    0     0   253 2085  364 21 76  2  0  0
 3  0  40768  93472 176764 1134404    0    0     0   999 2101  584 39 60  1  0  0
 2  0  40768  93976 176764 1134404    0    0     0   473 2070  333 18 80  2  0  0
 2  0  40768  93852 176764 1134412    0    0     0   516 2090  284 12 86  2  0  0
 1  0  40768  93828 176764 1134412    0    0     0   264 2088  323 17 80  3  0  0
 1  0  40768 111096 176764 1118408    0    0     0   310 1387  224  3 60 37  0  0
 0  0  40768 110336 176768 1118416    0    0     0   520  654  203 25  2 74  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0  40768 100892 176784 1126408    0    0     0  4680 1710  631 45 27 27  0  0
 0  0  40768 100916 176788 1126436    0    0     0   348  937  197 14 28 59  0  0
 1  0  40768  93400 176800 1134452    0    0     0   469 1608  304 15 60 26  0  0
 2  0  40768  93036 176808 1134452    0    0     0   224 2082  312 12 86  2  0  0
 2  0  40768  93408 176816 1134460    0    0     0   465 2106  325 17 82  1  0  0
 2  0  40768  92952 176816 1134464    0    0     0    46 2049  220  1 98  1  0  0
 1  0  40768  92448 176820 1134464    0    0     0   250 2109  249  2 98  1  0  0
 2  0  40768  92960 176824 1134476    0    0     1   264 2069  360 22 75  3  0  0
 0  0  40768 110032 176836 1118476    0    0     0  1090  990  325 25 16 59  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 101436 176836 1126480    0    0     1   752 1370  525 38 20 42  0  0
 3  0  40768  96924 176836 1126492    0    0     0  2809  614  416  5 15 79  0  0
 2  0  40768  88952 176836 1134432    0    0     0   292  900  183  8 32 60  0  0
 4  0  40768 102756 176840 1134496    0    0     0   138 2092  335 16 84  1  0  0
 4  0  40768  86804 176840 1134420    0    0     0   672 2069  616 49 51  1  0  0
 2  0  40768  92936 176840 1134420    0    0     0   989 2096  393 22 76  2  0  0
 1  0  40768  93028 176848 1134420    0    0     0     9 2098  201  2 98  0  0  0
 1  0  40768  94664 176856 1134420    0    0     0   447 2139  240  2 98  1  0  0
 0  0  40768 112344 176860 1118420    0    0     0   104 1944  210  1 89  9  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768  90448 176864 1118444    0    0     0   514 1452  271 19 46 35  0  0
 2  0  40768  91100 176868 1118444    0    0     0    10 2049  114  8 92  0  0  0
 0  0  40768  92380 176872 1118444    0    0     0   153 1149  155  5 48 47  0  0
 2  0  40768  91704 176872 1118444    0    0     0     7 1798  111  7 80 13  0  0
 2  0  40768  91580 176872 1118444    0    0     0   334 2069  136  8 92  0  0  0
 2  0  40768  91604 176872 1118444    0    0     0   255 1146  179 15 37 49  0  0
 3  0  40768  87132 176872 1118444    0    0     0   221 2065  197 20 80  0  0  0
 0  0  40768  92380 176872 1118444    0    0     0   353 1583  165  9 66 25  0  0
 4  0  40768  91580 176876 1118456    0    0     0   687 1636  326 38 38 24  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768  91308 176876 1118492    0    0     0   986 2084  413 39 61  0  0  0
 2  0  40768  91960 176876 1118492    0    0     0   318  938  202  4 36 60  0  0
 2  0  40768  91332 176876 1118492    0    0     0    10 2078  149  9 91  0  0  0
 0  0  40768  91472 176876 1118496    0    0     0   281 2054  216  8 89  3  0  0
 2  0  40768  92076 176876 1118496    0    0     0     4  941  128  4 39 57  0  0
 2  0  40768  92084 176880 1118512    0    0     0   225 2059  135  9 91  0  0  0
 0  0  40768  92216 176884 1118512    0    0     0   222 1482  163 15 54 31  0  0
 2  0  40768  89712 176888 1118516    0    0     0   227 1730  198  7 74 19  0  0
 2  0  40768  90084 176888 1118528    0    0     1   267 2076  188 20 80  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 4  0  40768  86860 176888 1118544    0    0     2   242 1042  261 18 28 54  0  0
 3  0  40768  84052 176892 1118496    0    0     0   996 2122  581 50 50  0  0  0
 0  0  40768  90688 176904 1118496    0    0     0  1336 1931  330 34 56  9  0  0
 2  0  40768  89624 176904 1118552    0    0     0   118 1255  169  5 53 42  0  0
 2  0  40768  89168 176912 1118552    0    0     0    79 2075  162  8 92  0  0  0
 0  0  40768  90968 176912 1118552    0    0     0    19  987  179  4 39 57  0  0
 2  0  40768  88696 176912 1118552    0    0     0   614 2050  262 19 77  3  0  0
 2  0  40768  89348 176912 1118552    0    0     0     8 2055  113  8 92  0  0  0
 4  0  40768  90084 176920 1118552    0    0     0   287  900 271258  4 36 60  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 4  0  40768  90060 176924 1118552    0    0     0    13 2046 793214 11 89  0  0  0
 0  0  40768  91124 176924 1118552    0    0     0   202 1383 507565  6 59 35  0  0
 2  0  40768  90208 176924 1118552    0    0     0    12 1555 644635  8 66 26  0  0
 3  0  40768  89704 176924 1118552    0    0     0   155 2050 838644 17 83  0  0  0
 2  0  40768  89108 176928 1118672    0    0    13   553 1177 284185 22 31 46  0  0
 3  0  40768  89100 176928 1118672    0    0     0   200 2053 744049  9 91  0  0  0
 0  0  40768  90100 176928 1118672    0    0     0    47 1835 665339  8 80 12  0  0
 2  0  40768  88556 176928 1118672    0    0     0   199 1140 443859  6 46 48  0  0
 2  0  40768  88332 176928 1118672    0    0     0     4 2042 833502 11 89  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0  40768  89992 176928 1118676    0    0     0   370 1096 381450  5 44 51  0  0
 2  0  40768  89828 176928 1118676    0    0     0     6 1855 649481  8 82 10  0  0
 3  0  40768  89960 176932 1118672    0    0     0   205 2049 736896  9 91  0  0  0
 4  0  40768  90448 176932 1118676    0    0     0    10  887 335434  4 36 60  0  0
 3  0  40768  90472 176936 1118676    0    0     0     6 2045 870540 11 89  0  0  0
 0  0  40768  91388 176940 1118676    0    0     0   130 1510 646026  8 63 29  0  0
 4  0  40768  90456 176944 1118676    0    0     0     3 1450 521513 16 53 32  0  0
 5  0  40768  89632 176944 1118644    0    0     0   730 2168 588785 38 62  0  0  0
 3  0  40768  92052 176944 1118644    0    0     0  1038 1435 206642 41 23 36  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 4  0  40768  90920 176948 1118644    0    0     0   103 2052 813120 11 89  0  0  0
 0  0  40768  92712 176948 1118644    0    0     0    43 1945 594507  9 85  6  0  0
 3  0  40768  90968 176948 1118660    0    0     0   460 1021 340119  5 41 54  0  0
 5  0  40768  90456 176948 1118664    0    0     0    45 2068 775430 12 88  0  0  0
 0  0  40768  92488 176952 1118708    0    0     0   586 1272 405735 18 40 42  0  0
 3  0  40768 114396 176952 1118720    0    0     0   298 1880 685554 21 68 10  0  0
 3  0  40768 114272 176952 1118720    0    0     0   108 2097 743092 21 79  0  0  0
 2  0  40768 114748 176952 1118728    0    0     0   356 1034 112606  7 33 61  0  0
 2  0  40768 114500 176952 1118760    0    0     0   385 2213 29841  9 91  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 113568 176952 1118760    0    0     0   266 2214 26231 23 77  0  0  0
 2  0  40768 113356 176952 1118760    0    0     0   184 2264 29280  9 90  0  0  0
 2  0  40768 113440 176956 1118760    0    0     0    14 2319 30905  9 91  0  0  0
 2  0  40768 113208 176960 1118760    0    0     0   194 2916 30834  9 90  0  0  0
 0  0  40768 115116 176964 1118760    0    0     0    51 2100 22568  7 71 21  0  0
 2  0  40768 113288 176964 1118764    0    0     1   462 1765 16905 18 53 29  0  0
 2  0  40768 112436 176964 1118768    0    0     0    50 2162 28511  9 91  0  0  0
 2  0  40768 113072 176976 1118764    0    0     0   177 2284 28444  9 91  0  0  0
 2  0  40768 113324 176984 1118768    0    0     0    10 2201 28516  9 91  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 113380 176984 1118768    0    0     0   230 2255 29356 10 90  0  0  0
 2  0  40768 113272 176984 1118768    0    0     0     4 2271 28895  9 91  0  0  0
 0  0  40768 114924 176984 1118768    0    0     0   183 1012 11653  4 36 60  0  0
 3  0  40768 112868 176992 1118760    0    0     0   315 2180 23086 32 68  0  0  0
 4  0  40768 109800 176992 1118732    0    0     0   986 2363 16363 53 47  0  0  0
 2  0  40768 113828 176996 1118732    0    0     0   306 2268 28616 12 88  0  0  0
 3  0  40768 113864 176996 1118748    0    0     0   495 2619 28344 18 82  0  0  0
 3  0  40768 110808 176996 1118784    0    0     0   271 2305 26663 20 80  0  0  0
 2  0  40768 109828 176996 1118784    0    0     0   572 2221 26002 24 76  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 109836 177004 1118788    0    0     0   177  995  262  6 34 60  0  0
 3  0  40768 110476 177004 1118792    0    0     0   353 2048  201 26 74  0  0  0
 0  0  40768 111976 177004 1118792    0    0     0   307 1336  163  8 54 38  0  0
 2  0  40768 111092 177004 1118808    0    0     0   301 1612  127 15 62 23  0  0
 2  0  40768 111140 177004 1118808    0    0     0    10 2045  106 21 80  0  0  0
 2  0  40768 111024 177004 1118808    0    0     0   419 1140  172 19 32 48  0  0
 3  0  40768 107900 177004 1118808    0    0     0    12 2048  171 29 71  0  0  0
 0  0  40768 112008 177004 1118808    0    0     0   534 1776  187 21 63 16  0  0
 2  0  40768 111132 177004 1118808    0    0     0    14 1167  116 10 44 45  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40768 110108 177004 1118808    0    0     0   194 2051  130 21 80  0  0  0
 1  0  40768 111884 177004 1118808    0    0     0    10 1109  182 12 37 50  0  0
 2  0  40768 110496 177004 1118808    0    0     0   432 2077  228 26 71  3  0  0
 2  0  40768 109908 177004 1118812    0    0     0    46 2112  147 20 80  0  0  0
 2  0  40768 111288 177004 1118812    0    0     0   250  914  181  5 34 60  0  0
 2  0  40768 111328 177004 1118812    0    0     0     5 2028   97 16 84  0  0  0
 0  0  40768 112096 177004 1118812    0    0     0   197 1465  134 13 56 31  0  0
 2  0  40768 110972 177004 1118812    0    0     0     6 1472  111 14 57 29  0  0
 2  0  40768 110972 177004 1118812    0    0     0   134 2045  108 20 80  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 4  0  40768 107608 177008 1118812    0    0     0    12 1206  200 27 29 45  0  0
 3  0  40768 104412 177008 1118784    0    0     0  1286 2103  522 54 46  0  0  0
 0  0  40768 111816 177008 1118784    0    0     0   375 1911  236 26 65  9  0  0
 2  0  40768 110304 177008 1118784    0    0     0   423 1077  188  9 39 52  0  0
 2  0  40768 106204 177008 1118824    0    0     0   226 2083  269 27 73  0  0  0
 0  0  40768 104724 177008 1118824    0    0     0   221 1307  350  7 46 47  0  0
 2  0  40768 125588 177012 1118824    0    0     0    54 1870  185 12 75 13  0  0
 3  0  40768 149816 177012 1118824    0    0     0   298 2054  180 26 74  0  0  0
 3  0  40764 128956 177016 1118840    0    0     0   590 1188 1291 31 20 49  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40764 128528 177016 1118876    0    0     0   311 2296 4356 48 52  0  0  0
 3  0  40764 129260 177016 1118828    0    0     0    40 2332 4688 48 52  0  0  0
 5  0  40764 128516 177020 1118932    0    0     0   238 2449 4933 49 51  0  0  0
 3  0  40764 103096 177020 1118880    0    0     0    23 2343 4127 56 44  0  0  0
 3  0  40764 110492 177024 1118872    0    0     0   525 2337 4775 49 51  0  0  0
 4  0  40764 110632 177024 1118896    0    0     0    71 2367 4591 47 53  0  0  0
 4  0  40764 110592 177024 1118808    0    0     0    34 2354 4697 49 51  0  0  0
 4  0  40764 110548 177028 1118960    0    0     0   240 2324 4809 50 50  0  0  0
 4  0  40764 110276 177032 1118840    0    0     0    17 2370 4829 49 51  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 3  0  40764 109160 177040 1118856    0    0     0   325 2314 4753 49 51  0  0  0
 4  0  40764 110296 177040 1118816    0    0     0    14 2359 4818 49 51  0  0  0
 0  0  40764 113020 177044 1118844    0    0     0   245 1905 3755 37 39 24  0  0
 4  0  40764 110000 177044 1118896    0    0     1   236 1449 2441 38 26 37  0  0
 3  0  40764 109552 177044 1118860    0    0     0   234 2295 4737 48 52  0  0  0
 3  0  40764 109720 177048 1118784    0    0     0    18 2418 4591 46 53  0  0  0
 7  0  40764 105900 177048 1118904    0    0     0   193 2287 4052 58 42  0  0  0
 4  0  40764 110632 177056 1118948    0    0     0  1281 2288 2881 75 25  0  0  0
 2  0  40764 110532 177060 1118868    0    0     0   554 2436 4452 55 45  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 3  0  40764 110604 177060 1118816    0    0     0    42 2443 5247 50 49  0  0  0
 4  0  40764 110488 177060 1118828    0    0     0   492 2449 4960 50 50  0  0  0
 3  0  40764 110000 177060 1118816    0    0     0    18 2273 4574 49 51  0  0  0
 4  0  40764 109800 177060 1118828    0    0     0   305 2378 4678 49 50  1  0  0
 4  0  40764 110568 177064 1118748    0    0     0    21 2324 4953 50 50  0  0  0
 3  0  40764 143204 177064 1118920    0    0     0   491 2308 4405 56 44  0  0  0
 4  0  40764 143008 177072 1118984    0    0     0   411 1046 1529 27 14 58  0  0
 3  0  40764 142684 177080 1118920    0    0     0   311 2348 4875 50 50  0  0  0
 4  0  40764 142568 177080 1118932    0    0     0   239 2300 4543 55 45  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 2  0  40764 142776 177080 1118872    0    0     0   268 2661 5085 49 51  0  0  0
 3  0  40764 142736 177080 1118932    0    0     0    38 2410 4879 49 51  0  0  0
 4  0  40764 142660 177080 1118888    0    0     1   986 2234 3171 71 29  0  0  0
 5  0  40764 139148 177080 1119032    0    0     1   338 2319 4661 51 49  0  0  0
 2  0  40764 139892 177080 1118932    0    0     0   278 2410 5041 49 51  0  0  0
 3  0  40764 124804 177080 1118932    0    0     0   261 2409 4611 54 46  0  0  0
 5  0  40764 123416 177080 1118888    0    0     0    78 2328 4381 49 51  0  0  0
 2  0  40764 124384 177080 1119052    0    0     0   342 2420 4919 49 51  0  0  0
 4  0  40764 124772 177084 1118964    0    0     0    40 2309 5013 49 51  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0  40764 127440 177084 1118920    0    0     0   318 2361 4734 48 50  1  0  0
 7  0  40764 122284 177148 1119120    0    0    13   228 1255 2028 32 20 47  0  0
 8  0  40764 121792 177148 1119028    0    0     0   274 2294 4706 50 50  0  0  0
14  0  40764 121636 177148 1119036    0    0     0    18 2313 4645 53 47  0  0  0
14  0  40764 120240 177148 1119352    0    0     0   448 2363 4222 57 43  0  0  0
12  0  40764 121272 177148 1119168    0    0     0    52 2334 4631 50 50  0  0  0
12  0  40764 121916 177152 1118952    0    0     0   208 2382 4892 51 49  0  0  0
12  0  40764 121008 177152 1119112    0    0     0    60 2299 4937 51 49  0  0  0
 8  0  40764 122900 177152 1118952    0    0     0    21 2289 4586 53 47  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
10  0  40764 120620 177156 1119156    0    0     0   541 2268 4366 55 45  0  0  0
10  0  40764 120340 177156 1118984    0    0     0    42 2297 4593 49 51  0  0  0
17  0  40764 118188 177156 1119100    0    0     0   263 2296 4860 53 47  0  0  0
14  0  40764 119800 177156 1119088    0    0     0   290 2265 4534 57 43  0  0  0
 0  0  40764 126444 177160 1118928    0    0     0   294 1548 3148 32 31 37  0  0
10  0  40764 121664 177160 1119044    0    0     0    26 1786 3714 39 38 23  0  0
15  0  40764 121136 177168 1119000    0    0     0   163 2335 4381 57 43  0  0  0
19  0  40764 118084 177168 1119144    0    0     1   277 2376 4303 51 49  0  0  0
15  0  40764 120656 177168 1118956    0    0     0   221 2349 4792 51 49  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
11  0  40764 121636 177168 1119124    0    0     0    18 2441 4435 56 44  0  0  0
 9  0  40764 122900 177168 1119064    0    0     0   580 2297 4724 55 45  0  0  0
13  0  40764 120860 177168 1119128    0    0     0    66 2296 5033 51 49  0  0  0
10  0  40764 121700 177172 1118948    0    0     0   253 2689 4876 51 49  0  0  0
 9  0  40764 122660 177172 1119048    0    0     0    20 2990 4883 49 51  0  0  0
11  0  40764 122512 177176 1119112    0    0     0   254 2817 4949 51 49  0  0  0
14  0  40764 120556 177176 1119200    0    0     3    47 2423 4977 51 49  0  0  0
12  0  40756 120672 177176 1119216    0    0     0   334 2362 5014 50 50  0  0  0
18  0  40756 119724 177184 1119092    0    0     0   398 1187 1859 31 18 50  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
11  0  40752 121340 177192 1119312    0    0    48   286 2282 4966 52 48  0  0  0
12  0  40752 111116 177192 1119572    0    0    16   172 2518 4853 50 50  0  0  0
18  0  40752 111920 177192 1119388    0    0     0   325 2402 4925 51 49  0  0  0
25  0  40752 112368 177192 1119552    0    0     0    17 2365 4105 58 42  0  0  0
10  0  40752 109292 177192 1119420    0    0     0   856 2227 3480 64 36  0  0  0
10  0  40752 111652 177192 1119276    0    0     0   408 2146 3416 61 39  0  0  0
22  0  40752  97820 177196 1119568    0    0     0   671 2264 3474 62 38  0  0  0
18  0  40752 105728 177196 1119452    0    0     0   662 2301 3875 58 42  0  0  0
14  0  40752 107880 177208 1119388    0    0     0  1064 2344 4050 57 43  0  0  0
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
19  0  40752 105644 177208 1119432    0    0     0    88 2311 4110 57 43  0  0  0
18  0  40752 105480 177216 1119440    0    0     0   820 2232 3970 60 40  0  0  0
 0  0  40752 116040 177216 1119324    0    0     0   339 2040 3843 48 40 12  0  0
 1  0  40752 116548 177216 1119308    0    0     0   306  205  131  5  0 95  0  0
 0  0  40752 116748 177216 1119312    0    0     0   262  269  150  7  0 93  0  0

ベンチマークの結果はこんな感じでした。

2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       25241957.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     2855.0 MWIPS (9.9 s, 7 samples)
Execl Throughput                               2360.1 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        667146.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          198426.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        869964.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1793028.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  37747.1 lps   (10.0 s, 7 samples)
Process Creation                               5139.3 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   4021.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    902.3 lpm   (60.0 s, 2 samples)
System Call Overhead                        3114249.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   25241957.8   2163.0
Double-Precision Whetstone                       55.0       2855.0    519.1
Execl Throughput                                 43.0       2360.1    548.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     667146.4   1684.7
File Copy 256 bufsize 500 maxblocks            1655.0     198426.9   1199.0
File Copy 4096 bufsize 8000 maxblocks          5800.0     869964.2   1499.9
Pipe Throughput                               12440.0    1793028.6   1441.3
Pipe-based Context Switching                   4000.0      37747.1     94.4
Process Creation                                126.0       5139.3    407.9
Shell Scripts (1 concurrent)                     42.4       4021.1    948.4
Shell Scripts (8 concurrent)                      6.0        902.3   1503.9
System Call Overhead                          15000.0    3114249.7   2076.2
                                                                   ========
System Benchmarks Index Score                                         906.2

2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       48946475.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     5580.7 MWIPS (9.9 s, 7 samples)
Execl Throughput                               6197.6 lps   (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        671246.2 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          180609.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1483606.8 KBps  (30.0 s, 2 samples)
Pipe Throughput                             3389415.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 420845.4 lps   (10.0 s, 7 samples)
Process Creation                              13992.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   7098.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    926.7 lpm   (60.1 s, 2 samples)
System Call Overhead                        4287880.4 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   48946475.8   4194.2
Double-Precision Whetstone                       55.0       5580.7   1014.7
Execl Throughput                                 43.0       6197.6   1441.3
File Copy 1024 bufsize 2000 maxblocks          3960.0     671246.2   1695.1
File Copy 256 bufsize 500 maxblocks            1655.0     180609.5   1091.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1483606.8   2557.9
Pipe Throughput                               12440.0    3389415.2   2724.6
Pipe-based Context Switching                   4000.0     420845.4   1052.1
Process Creation                                126.0      13992.6   1110.5
Shell Scripts (1 concurrent)                     42.4       7098.5   1674.2
Shell Scripts (8 concurrent)                      6.0        926.7   1544.5
System Call Overhead                          15000.0    4287880.4   2858.6
                                                                   ========
System Benchmarks Index Score                                        1722.7

sar で見るとこんな感じ。

16時40分01秒     CPU     %user     %nice   %system   %iowait    %steal     %idle
19時30分01秒     all      4.25      0.00      0.36      0.03      0.00     95.36
19時40分01秒     all     25.24      0.00      6.19      0.06      0.00     68.51
19時50分01秒     all     24.59      0.00     16.92      0.04      0.00     58.45
20時00分01秒     all      4.94      0.00     33.27      0.05      0.00     61.74
20時10分01秒     all     40.24      0.00     30.37      0.03      0.00     29.36
20時20分01秒     all     35.71      0.00     42.63      0.04      0.00     21.62
20時30分01秒     all     10.42      0.00     67.62      0.04      0.00     21.93
20時40分01秒     all     33.61      0.00     32.28      0.03      0.00     34.08
20時50分01秒     all      5.43      0.00      0.40      0.03      0.00     94.14

おしまい。

 

Related Posts


投稿者: Takeken

インターネット利用者のITリテラシーを向上したいという設定の2次元キャラです。 サーバー弄りからプログラミングまで手を付けた自称エッセイストなたけけんの物語。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です