Power架构云小机测试笔记
一、云小机介绍
云小机是IBM与启创卓越推出的虚拟云主机,与常见的阿里、百度、网宿的云主机不同,云小机是基于Power架构的,而传统的云主机几乎都是基于x86架构的。我有幸申请到一台云小机,下面就来测试一下云小机的各方面情况。
二、硬件摸底
首先对云小机配置的物理硬件进行摸底。
1、查看云小机的OS
-
# cat /proc/version
-
Linux version 2.6.32-431.el6.ppc64 (mockbuild@ppc-003.build.bos.redhat.com) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Sun Nov 10 22:17:43 EST 2013
可以看出,OS是RedHat Linux。
-
# lsb_release -a
-
LSB Version: :base-4.0-noarch:base-4.0-ppc64:core-4.0-noarch:core-4.0-ppc64:graphics-4.0-noarch:graphics-4.0-ppc64:printing-4.0-noarch:printing-4.0-ppc64
-
Distributor ID: RedHatEnterpriseServer
-
Description: Red Hat Enterprise Linux Server release 6.5 (Santiago)
-
Release: 6.5
-
Codename: Santiago
可以看出,云小机预装了RedHat 6.5企业版Linux系统。
-
# uname -r
-
2.6.32-431.el6.ppc64
-
# uname -m
-
ppc64
可以看出,云小机是基于Power架构的,CPU为64位CPU。
2、查看CPU信息
-
# cat /proc/cpuinfo
-
processor : 0
-
cpu : POWER7 (architected), altivec supported
-
clock : 4228.000000MHz
-
revision : 2.1 (pvr 004a 0201)
-
......
-
processor : 7
-
cpu : POWER7 (architected), altivec supported
-
clock : 4228.000000MHz
-
revision : 2.1 (pvr 004a 0201)
-
-
timebase : 512000000
-
platform : pSeries
-
model : IBM,8246-L2T
-
machine : CHRP IBM,8246-L2T
可以看出,云小机的逻辑CPU有8个,即8核4GHz。
3、查看内存信息
-
# cat /proc/meminfo
-
MemTotal: 4131712 kB
-
MemFree: 1226560 kB
-
......
可以看出,云小机的内存为4GB。
4、查看硬盘信息
-
# fdisk -l
-
Disk /dev/sda: 42.9 GB, 42949672960 bytes
-
64 heads, 32 sectors/track, 40960 cylinders
-
......
可以看出,云小机的硬盘空间大约有43GB。
5、查看云小机实时运行情况
-
# top
-
top - 12:10:36 up 13 days, 4:50, 1 user, load average: 0.02, 0.05, 0.04
-
Tasks: 193 total, 1 running, 192 sleeping, 0 stopped, 0 zombie
-
Cpu(s): 0.2%us, 0.1%sy, 0.0%ni, 99.7%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
-
Mem: 4131712k total, 2906432k used, 1225280k free, 225600k buffers
-
Swap: 1048448k total, 0k used, 1048448k free, 2258048k cached
可以看出,CPU基本空闲,内存用了3个G,还剩1个G。
总结:
1)由于云小机是Power架构的,绝大多数Linux工具的RPM包是无法安装的,因为大多数工具提供的RPM包是x86架构的。这种情况下就决定了软件必须通过源码安装。
2)系统是RedHat Linux,且云小机未注册,在使用yum安装工具时会报以下错误。
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
解决方法有两种:
一是注册云小机,让yum可用。
二是更换yum源,替换成CentOS的yum源。
3)Power的生态链很薄弱,网上到处都是x86的内容。
CentOS对Power架构的支持很弱,基本上在官网和国内找不到源和镜像的下载。
——————————————————————————
以下的内容未完成,待运维人员安装gcc后继续修订。
6、测试云小机的带宽
# wget downinfo.myhostadmin.net/vnstat-1.10.tar.gz
# tar xzvf vnstat-1.10.tar.gz
# cd vnstat-1.10
# make && make install
一般常用的查看流量命令:
1)查看实时流量
# vnstat -l -i eth0
-
Monitoring eth0... (press CTRL-C to stop)
-
rx: 4 kbit/s 4 p/s tx: 4 kbit/s 4 p/s
-
-
-
eth0 / traffic statistics
-
-
-
rx | tx
-
--------------------------------------+------------------
-
bytes 152 KiB | 209 KiB
-
--------------------------------------+------------------
-
max 20 kbit/s | 32 kbit/s
-
average 8.27 kbit/s | 11.37 kbit/s
-
min 0 kbit/s | 4 kbit/s
-
--------------------------------------+------------------
-
packets 1292 | 1117
-
--------------------------------------+------------------
-
max 36 p/s | 18 p/s
-
average 8 p/s | 7 p/s
-
min 0 p/s | 1 p/s
-
--------------------------------------+------------------
-
time 2.45 minutes
2)查看最近五秒的平均流量
# vnstat –tr –i eth0
-
64 packets sampled in 5 seconds
-
Traffic average for eth0
-
-
-
rx 6.40 kbit/s 5 packets/s
-
tx 8.00 kbit/s 7 packets/s
二、云小机的性能测试
鉴于以上情况,云小机上最好不要测试那些很占用内存的系统或应用,否则难以得到客观的测试结果。比如MongoDB,它的性能在很大程度上取决于内存的大小,内存有限的情况下,MongoDB的性能难以得到充分的发挥。
1、文件系统I/O基准测试
我选用IOzone工具。
主页:
下载IOzone
# wget src/current/iozone-3-430.i386.rpm
安装IOzone
# rpm -ivh iozone-3-430.i386.rpm
Preparing... ########################################### [100%]
package iozone-3-430.i386 is intended for a i386 architecture
此包是为x86主机准备的,在Power架构的云主机上安装不成功。
重新下载IOzone
# wget src/current/iozone3_430.tar
100%[+++++++++++++++++++++++++++++=====================================================================>] 1,832,960 7.87K/s in 3m 22s
2015-04-26 14:26:48 (6.24 KB/s) - ?.ozone3_430.tar?.saved [1832960/1832960]
解压IOzone
# tar xvf iozone3_430.tar
# mv iozone3_430 iozone
# cd iozone/src/current
# make linux
开始测试
# cd /opt/iozone/bin
# ./iozone/src/current/iozone -Rab /home/output.xls
iozone test complete.
Excel output is below:
"Writer report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 688639 1070292 1232453 1392258 1460430
"128" 718889 1243315 1487977 1967960 2784517 2377579
"256" 977189 1405778 1894373 2371308 2305128 2639446 2392442
"512" 1014013 1551867 2187279 2782414 3122224 3122224 2708713 3284589
"1024" 1052222 1620249 2343383 3020783 2958362 2877110 3411938 3239514 3345496
"2048" 1070689 1660915 2226060 3195891 3130664 3683812 3624742 3669648 3717289 3657149
"4096" 1074762 1677917 2386820 3047802 3650781 3673419 3723578 3689988 3771811 3700320 3653887
"8192" 1084149 1684234 2429485 3255981 3759351 3683582 3632566 3698251 3759351 3805147 3710232 3273040
"16384" 1080379 1683030 2517491 3313250 3433432 3503092 3788116 3704393 3836118 3820974 3547946 3128617 3076237
"32768" 0 0 0 0 3418300 3657936 3625132 3361532 3715590 3697596 3490796 3182281 3190703
"65536" 0 0 0 0 3799867 3657976 3647975 3701121 3716434 3714124 3569898 3159741 3213825
"131072" 0 0 0 0 3725420 3625859 3796425 3684596 3717384 3730628 3569986 3143297 3200407
"262144" 0 0 0 0 3693729 3558983 3644437 3807676 3830493 3810619 3579491 3130007 3237630
"524288" 0 0 0 0 3422312 3370802 3457568 3444257 3455829 3494435 3274101 2986562 2993090
"Re-writer report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 1599680 2561267 3791156 4988978 6421025
"128" 1684006 2784517 3982553 6114306 7082197 5847904
"256" 1673001 2842047 4652146 6249745 8024634 9434868 9114515
"512" 1791352 2995907 4916336 6472112 6999490 7410080 8528336 10235583
"1024" 1803239 2852271 4720752 6974549 8593274 8391792 8262639 11398360 11018226
"2048" 1796754 3002627 4403275 6649556 8431376 7817519 10660056 7882079 9752360 11440955
"4096" 1790165 2944377 4565707 6908408 8409937 7625987 8193352 8944095 8077780 6595451 8158335
"8192" 1745229 2836411 4383287 5923270 7600357 7086227 6219175 9319649 7816482 6769317 6376132 5253938
"16384" 1734647 2769516 4143770 5990292 6942198 6023899 6450228 6384903 6795292 6593184 5973110 4807640 4701080
"32768" 0 0 0 0 6929180 5906321 5993638 6162959 6329565 6239056 5552908 4864612 4805422
"65536" 0 0 0 0 6560832 5750727 5991653 6134598 6290140 6199628 5652108 4815255 4680859
"131072" 0 0 0 0 6594104 5818703 6057194 6079096 6273187 6267180 5683475 4715703 4730799
"262144" 0 0 0 0 6498994 5765727 5896174 6083765 6223892 6137763 5455772 4675871 4733117
"524288" 0 0 0 0 6130453 5173346 5705542 5847442 5892522 5841183 5349825 4519106 4545748
"Reader report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 5735102 9318832 7100397 15972885 22737791
"128" 5545860 8548124 11720614 15881078 21643049 18012359
"256" 5022044 8534922 12228612 15164624 19955913 19955913 14164395
"512" 5551840 8394979 12499490 16049269 19557124 18869737 17069844 14628067
"1024" 5564829 8183918 12492426 16531459 12173747 18936769 13102174 11903823 15080341
"2048" 5578583 8643474 12488897 16001943 19665344 10240672 19710468 19355169 18129656 14944066
"4096" 5319164 7859742 8888565 13136407 16458876 14130439 16318176 15006799 11500738 10112910 10950922
"8192" 3949937 5534924 7543623 8694693 9728660 9845745 9319649 11131163 10543659 9834473 9406396 8085013
"16384" 3643313 5226290 6870020 8664879 8765456 8663787 9335863 8180105 10182464 8919040 8678010 7145026 6753885
"32768" 0 0 0 0 8896988 8710352 7529331 8355050 8622914 8698774 8002358 6583963 6796907
"65536" 0 0 0 0 9122516 8791084 8160535 8341056 8603968 8459394 7875975 6558171 6497096
"131072" 0 0 0 0 8364510 8652284 8253376 8385945 8485351 8496892 7695155 6423521 6477789
"262144" 0 0 0 0 9142878 8851980 8129247 8349887 8466065 8453502 7638425 6407044 6390621
"524288" 0 0 0 0 8919184 8627991 8300023 8284701 8525004 8462116 7798402 6335876 6369442
"Re-Reader report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 6421025 9006179 15972885 15972885 20962191
"128" 5847904 9129573 14200794 6727225 21643049 20804356
"256" 4572895 8815202 12812277 17096249 19591792 19591792 14953435
"512" 5566231 8362289 12797441 16417355 20490142 20490142 17069844 12499490
"1024" 5623115 7269678 12676785 16789959 17985196 19994662 19363647 11773301 15080341
"2048" 5444228 8643474 12561952 16653431 20079056 19893055 19139540 18480699 17084004 15154989
"4096" 5375755 8158335 11378861 14318876 17733038 16195114 17733038 17356809 16585996 13465897 11063759
"8192" 4150325 5599873 7453619 9558162 11442544 11363077 10778492 12245943 11739671 11600942 9809204 7447157
"16384" 3753356 5414475 7320858 8866107 9694083 9526105 9643748 9078103 10549819 8860391 8493527 7111015 6686851
"32768" 0 0 0 0 9405377 8967812 8089019 7794502 8616427 8703181 7865427 6768789 6747852
"65536" 0 0 0 0 9167239 8920029 8181667 8367717 8697620 8514420 7873268 6423760 6604973
"131072" 0 0 0 0 9214226 8736432 8265910 8366674 8462363 8497943 7789799 6374807 6463092
"262144" 0 0 0 0 9235650 8961281 8158562 8441560 8465282 8488024 7753479 6386909 6349619
"524288" 0 0 0 0 9182729 8861462 8187414 8331280 8534864 8604057 7800062 6420996 6350074
"Random read report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 3588436 6421025 10402178 15972885 20962191
"128" 3560017 6045455 9977956 7582312 18012359 12842051
"256" 3557725 6249745 9868433 13454450 18259146 14953435 14164395
"512" 3604335 6156675 9681823 13872122 17776344 16417355 17069844 14628067
"1024" 3579719 6128613 9743447 13818817 17616353 15516181 18608584 16531459 15080341
"2048" 3586902 6185123 9796850 13118295 18129656 18129656 19665344 19710468 18129656 13384011
"4096" 3503374 6158088 9795765 13423810 17063738 18299707 18378010 20481345 19504720 14941541 11099499
"8192" 3094689 5298499 8022717 11538609 14979358 15313152 14548080 15485690 15605254 11687758 9011667 7301563
"16384" 2591153 4743590 6638404 8728714 10376187 9143328 10362106 10020621 10570916 9852529 8515629 6659634 7214033
"32768" 0 0 0 0 9086989 8378479 8237372 8346424 8410267 8784957 7889809 6565406 6346517
"65536" 0 0 0 0 8672374 8718586 7987199 8318842 8426976 8417170 7702939 6376374 6636548
"131072" 0 0 0 0 8589826 8495711 8060958 8230640 8361838 8385306 7727388 6442188 6361161
"262144" 0 0 0 0 8681990 8618901 7996343 8355154 8407735 8474547 7716964 6335022 6295305
"524288" 0 0 0 0 8641757 8625995 8263935 8277622 8490640 8521965 7783249 6297086 6332282
"Random write report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 1392258 2298136 3057153 4018152 6421025
"128" 1421023 2326073 3759450 1175271 6406138 7082197
"256" 1445521 2557711 3410808 5810112 7518900 7314033 8271916
"512" 1492545 2560168 4195896 6174377 7758090 8109658 8528336 8992598
"1024" 1492445 2207295 4195100 6244448 5991815 8061038 8000971 8199542 9220512
"2048" 1485169 2563543 4223576 6243566 8089930 7670915 8793903 9101380 9308497 9218589
"4096" 1462887 2542602 4087714 6032669 8017464 7756829 8552280 8902382 8829180 6459069 7515892
"8192" 1486739 2337905 3715447 5615432 6660405 6798785 6943036 7825383 8069823 7230880 6450345 5542066
"16384" 1382830 2242816 3518877 5244638 6287346 6134130 6895526 6574890 7416459 6671272 6427904 4762988 4884875
"32768" 0 0 0 0 6305173 5688979 5658297 5960884 6304016 6351797 5789388 4915590 4889359
"65536" 0 0 0 0 6248672 5538341 5930380 6132272 6241011 6291291 5683428 4917595 4937914
"131072" 0 0 0 0 6225802 5580155 5947819 6065347 6252496 6376064 5798389 4852693 4865706
"262144" 0 0 0 0 6156941 5550627 5746622 5986936 6255513 6261819 5741700 4754751 4807600
"524288" 0 0 0 0 5757045 5369826 5577118 5828333 5884732 5982079 5513826 4646467 4647979
"Backward read report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 2278628 3203069 4564786 4897948 5860307
"128" 2727923 4557257 5784891 5847904 7582312 8036304
"256" 2392442 4332998 7518900 9518507 11695808 11207494 11091721
"512" 3388236 5566231 8665997 11683444 13783088 13783088 9681823 12797441
"1024" 3179559 4854136 9142007 12492426 12983353 15977962 12790037 11249091 13818817
"2048" 3519302 6062888 9308497 13058467 16525279 16244028 18323016 18763275 17050094 13926483
"4096" 3276846 5696610 5736555 11500738 13746032 13969580 15287223 14475721 14889742 11477688 9773474
"8192" 3042083 4688953 6135880 7173514 11098803 10384332 9965682 8941315 10778492 9052027 8007759 6720329
"16384" 2263949 4448782 5870045 7616198 8333870 8171351 8059228 8686786 8705493 8406252 7236062 6395004 6968951
"32768" 0 0 0 0 8738041 8399986 7423592 8114809 8397420 8165431 7534697 6370344 6331898
"65536" 0 0 0 0 8719416 8343082 8089925 8260345 8225984 8419233 7671338 6381259 6321676
"131072" 0 0 0 0 8411736 8414440 8064032 8064387 8375724 8378405 7594381 6414078 6112893
"262144" 0 0 0 0 8811262 8618901 8130209 8308622 8428230 8436378 7377499 6344417 6247480
"524288" 0 0 0 0 8667645 8337629 8088367 8276033 8382730 8553821 7725906 6369755 6336114
"Record rewrite report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 1452528 2203800 3738358 4897948 5735102
"128" 1471662 2511022 4135958 6114306 7082197 7082197
"256" 1514860 2665657 4572895 6936061 9192546 9192546 8271916
"512" 1541840 2811557 4916336 7435738 10235583 10235583 10235583 9145790
"1024" 1519371 2774874 4876180 7631350 10769573 10769573 11368190 10878686 9485232
"2048" 1568134 2880782 4909079 7903836 11129659 11502234 12118884 12050878 11129659 9228493
"4096" 1540960 2862450 4910209 7906767 11222762 11070889 12229356 12718238 12117223 10985935 7460407
"8192" 1555034 2821968 4979812 8039611 11873547 9954134 12302946 12961998 12860118 12065338 8384911 5410295
"16384" 1530507 997136 4697224 7850240 10638009 11871097 12859651 13097393 13485497 12900691 7034583 4929022 5510869
"32768" 0 0 0 0 11890411 11902768 11574970 13255041 12496943 13123412 8955541 5807981 4938020
"65536" 0 0 0 0 11991983 12086898 13005934 13611317 14093552 10656327 11118844 6142686 5006536
"131072" 0 0 0 0 11507473 12047117 13195678 13480749 13591061 13058703 9910902 6275908 5405937
"262144" 0 0 0 0 11265394 11843488 13206267 13906109 14433679 13693263 10357331 6640412 5189415
"524288" 0 0 0 0 11530427 12258351 12351856 13892825 13870480 13720501 10715923 6572924 5554003
"Stride read report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 3363612 4897948 6271021 7100397 7100397
"128" 2660335 5847904 7082197 9977956 9795896 9129573
"256" 3410808 4572895 9114515 11569783 12812277 12228612 12228612
"512" 3437042 5886650 8992598 13190469 15037801 14240069 15471149 13522711
"1024" 3529706 5917516 9402175 12790037 17056672 16468073 17616353 16219316 14422045
"2048" 3483621 5750369 9567698 12805399 12257227 10084382 18091473 19139540 17828628 9101380
"4096" 3430618 5833956 8677553 12643359 15999048 16585996 19888580 19593701 19135397 16650294 9701724
"8192" 3191265 4961834 7495897 10819219 10681322 13883812 13861408 21383878 19283661 19414412 10863689 7199064
"16384" 2596145 4568869 6458108 8436179 9608689 9404858 9620796 9758786 22226324 19207157 11545987 6635840 6998761
"32768" 0 0 0 0 9046913 8837491 8210307 8777663 8485035 22157546 15745447 8406152 6322286
"65536" 0 0 0 0 8793333 8601545 8339032 8306273 8533452 8582477 19557574 8365680 6513878
"131072" 0 0 0 0 8325117 8450786 8109951 8350661 8457416 8330541 7646244 8216125 6227636
"262144" 0 0 0 0 8602246 8511416 7934827 8348303 8400733 8447267 7422371 6426667 6277693
"524288" 0 0 0 0 8440614 8468406 8009677 8289917 8502491 8492279 7712060 6367505 6337940
"Fwrite report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 1452528 2467108 3541098 4988978 6421025
"128" 1487977 2511022 3359523 4934216 5325799 7476717
"256" 1579483 2582316 3879045 5428265 6107548 6249745 8534922
"512" 1590957 2642062 3788747 5509113 6246213 6246213 6319739 8992598
"1024" 1589665 2567523 4110780 5507740 6519323 6402699 6692005 6963241 9320560
"2048" 1564421 2649737 3922692 5719737 6563185 5489457 6583305 6845629 7451329 8464610
"4096" 1582697 2622157 3980686 5426697 6408472 5800471 6442115 6769576 5093643 7585581 5440445
"8192" 1576944 2491496 3794222 5025700 5793435 5645881 5717279 5966469 6150158 6173362 6732179 5210911
"16384" 1541458 2441726 3662732 5131457 5521940 4935040 5378876 5477486 5822300 5425162 4728576 4864473 5561265
"32768" 0 0 0 0 5343701 4814512 4860139 5131994 5078705 5083590 4206395 4012253 4663721
"65536" 0 0 0 0 5342953 4789914 4945376 5099226 5096484 4978066 3902807 3620587 3942721
"131072" 0 0 0 0 5232390 4833578 5022261 5033711 5061657 4916795 3744910 3465849 3580915
"262144" 0 0 0 0 5263722 4811134 4926860 5048128 5086027 4883900 3599140 3360860 3314209
"524288" 0 0 0 0 4840541 4576771 4713928 4833795 4793314 4612608 3471191 3200507 3207874
"Re-Fwrite report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 1562436 2689580 3791156 7100397 7100397
"128" 1561553 2660335 4267461 6114306 9795896 8548124
"256" 1600674 2692393 4350555 6398720 4652146 11207494 10245071
"512" 1616100 1566585 4375425 5699180 7988981 8844453 11877300 11620224
"1024" 1605111 2723840 4339202 5991815 7883484 8061038 9320560 11903823 12037272
"2048" 1609866 2599225 4240255 6110328 7733066 7609754 8600205 9472740 12274742 6321679
"4096" 1593856 2734426 4200656 5944991 7447471 6941906 7047267 7998800 5360658 10089154 7845385
"8192" 1542192 2546334 3723500 5126172 6638529 4884942 6244039 6135880 7031124 7105276 6014511 5225175
"16384" 1555626 2430155 3732967 5178244 5435890 5141054 5309062 5529493 5816386 5136059 4789212 4930437 5544663
"32768" 0 0 0 0 4655190 4928988 4943881 5130462 5260457 4995090 4010731 3787365 4771721
"65536" 0 0 0 0 5425635 4785745 5009273 5100077 5147352 4906448 3782976 3498073 3842199
"131072" 0 0 0 0 5291567 4806280 4866223 5065995 5064782 4861361 3635955 3378999 3436966
"262144" 0 0 0 0 5281750 4862711 4947989 5030390 5057765 4858843 3636193 3279258 3310278
"524288" 0 0 0 0 4917537 4565454 4662614 4721621 4803407 4657735 3438112 3145911 3171199
"Fread report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 2222043 5389653 7100397 7940539 7100397
"128" 4407601 6406138 8548124 9977956 8548124 9129573
"256" 3770085 7073132 9868433 11569783 6891544 12228612 11569783
"512" 4532414 6156675 10911694 13438092 15930214 14628067 15471149 13522711
"1024" 4720752 7644933 11368190 14618393 17056672 16531459 7699755 10557785 14230902
"2048" 4717655 6127764 11770166 15181774 17050094 9708272 18600754 18970464 15766969 7368238
"4096" 4734303 7061751 10136778 11508442 15396828 13790167 11736440 13845736 9891647 10580003 8447153
"8192" 3594563 5326425 7334293 8436380 8588204 8904241 9286903 9254386 10681322 9706673 8668371 7528746
"16384" 3338845 4588087 6435127 8107722 8646345 8453822 8151964 8270680 8159708 8018790 8039428 6488597 7330229
"32768" 0 0 0 0 8875156 8576102 8173686 8365730 8421604 8408723 7355259 6421239 6319669
"65536" 0 0 0 0 8829771 8574712 8151098 8334733 8364407 8082788 7659581 6391943 6316156
"131072" 0 0 0 0 8235695 8877222 8130581 8341665 8420884 8377894 7656893 6350066 6278560
"262144" 0 0 0 0 9002148 8929767 8204281 8310694 8449994 8325735 7703771 6312907 6271999
"524288" 0 0 0 0 9197708 8830538 8121195 8451644 8407183 8480195 7773564 6396715 6340242
"Re-Fread report"
"4" "8" "16" "32" "64" "128" "256" "512" "1024" "2048" "4096" "8192" "16384"
"64" 3791156 8182586 10821524 12310336 10402178
"128" 4934216 8036304 10567140 12542043 12842051 11470204
"256" 4907284 7518900 11695808 14953435 16072608 14353744 14953435
"512" 4784885 7988981 11620224 15037801 17630404 16543832 17069844 15037801
"1024" 4876180 7869040 11903823 15516181 18291580 17985196 19276739 17985196 15240881
"2048" 4889518 7503399 11380325 15854271 19139540 18641120 20510548 19893055 17221003 14713687
"4096" 4746074 7542289 11128258 13434307 16846218 16318176 17356809 16929220 17217649 14318876 11477688
"8192" 3706629 5584401 7839667 9447779 11098803 10266427 10764984 10569606 11671877 9526362 10076743 8216483
"16384" 3449113 4987331 6993063 8678010 8992570 9384309 8734262 8519852 8650699 8632226 7710195 6703812 7272051
"32768" 0 0 0 0 9227927 8858567 8196108 8442815 8530855 8506567 7688545 6561645 6695584
"65536" 0 0 0 0 9094447 8857370 8165384 8212467 8477134 8440950 7741119 6425112 6261768
"131072" 0 0 0 0 8485875 8958520 8177628 8362856 8411736 8452475 7688375 6466589 6329522
"262144" 0 0 0 0 9072940 8996034 8236794 8388364 8529177 8320442 7739507 6310806 6318857
"524288" 0 0 0 0 9063024 8829652 8173476 8433428 8457755 8417030 7779889 6403999 6404372