No use having an i7? TL;DR just some kernel compile times, speed
up memory from 1333MHz to 1600MHz near the bottom, cold vs hot cache.
Was it worth AU$1200? See comparison with 'pooh' at end, below.
i7 box will be described on
<
http://bugsplatter.id.au/kernel/boxen/phobos/>
when I get find a round tuit!
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j20
...
Kernel: arch/x86/boot/bzImage is ready (#4)
real 1m15.555s
user 8m56.670s
sys 0m26.852s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j200
...
Kernel: arch/x86/boot/bzImage is ready (#5)
real 1m16.098s
user 9m2.275s
sys 0m27.114s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j2000
...
Kernel: arch/x86/boot/bzImage is ready (#6)
real 3m29.682s
user 8m33.174s
sys 0m30.361s
This one above bogged down in a swap storm... Load average peaked in
the high 500s though.
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j9
...
Kernel: arch/x86/boot/bzImage is ready (#7)
real 1m16.585s
user 8m45.602s
sys 0m26.377s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j50
...
Kernel: arch/x86/boot/bzImage is ready (#8)
real 1m16.511s
user 9m4.475s
sys 0m27.346s
Reboot, change memory to 1600MHz, cold cache:
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j50
...
Kernel: arch/x86/boot/bzImage is ready (#9)
real 1m14.848s
user 8m28.461s
sys 0m25.524s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j50
...
Kernel: arch/x86/boot/bzImage is ready (#10)
real 1m11.643s
user 8m28.573s
sys 0m25.459s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j20
...
Kernel: arch/x86/boot/bzImage is ready (#11)
real 1m10.871s
user 8m22.802s
sys 0m25.030s
grant@phobos:~/linux/linux-3.14.8a$ make clean; time make -j10
...
Kernel: arch/x86/boot/bzImage is ready (#12)
real 1m10.915s
user 8m17.234s
sys 0m24.801s
For comparison, first run:
grant@pooh:~/linux/linux-3.14.5a$ make clean; time make -j10
...
Kernel: arch/x86/boot/bzImage is ready (#100)
real 3m55.915s
user 12m55.730s
sys 0m40.130s
grant@pooh:~/linux/linux-3.14.5a$ make clean; time make -j10
...
Kernel: arch/x86/boot/bzImage is ready (#101)
real 3m52.125s
user 12m57.300s
sys 0m39.060s
Grant.