> you have a dual system, correct? Could you compare running
> 2 such tests at once so that all CPUs are loaded?
Yes, it's a dual 450 MHz PII and appears to have no
problems. Certainly, there are no surprises when I run two
pipes at once -- they take about 11 seconds of real time,
roughly twice the real time of one pipe with the "rsh
trick".
$ time sh -c "
> gzip -1 </tmp/random | gzip -1 >/dev/null &
> gzip -1 </tmp/random | gzip -1 >/dev/null
> " 2>&1
10.12user 0.19system 0:10.37elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (353major+237minor)pagefaults 0swaps
$ time sh -c "
> gzip -1 </tmp/random | rsh `hostname` 'gzip -1 >/dev/null' &
> gzip -1 </tmp/random | rsh `hostname` 'gzip -1 >/dev/null'
> " 2>&1
10.20user 0.44system 0:11.03elapsed 96%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (676major+318minor)pagefaults 0swaps
$ time sh -c "
> rsh `hostname` 'gzip -1 </tmp/random' | gzip -1 >/dev/null &
> rsh `hostname` 'gzip -1 </tmp/random' | gzip -1 >/dev/null
> " 2>&1
5.11user 0.45system 0:11.02elapsed 50%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (433major+200minor)pagefaults 0swaps
$ time sh -c "
> rsh `hostname` 'gzip -1 </tmp/random' | rsh `hostname` 'gzip -1 >/dev/null' &
> rsh `hostname` 'gzip -1 </tmp/random' | rsh `hostname` 'gzip -1 >/dev/null'
> " 2>&1
0.03user 0.72system 0:11.77elapsed 6%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (834major+238minor)pagefaults 0swaps
This is under 2.2.5. Do you need me to run this under
2.3.29? The problem is that I can't get my ethernet card to
work under 2.3.X -- there are complaints about System.map
when I boot and I am clueless about how to fix them.
Regards,
Alan
--
Dr Alan Watson
Instituto de Astronom�a UNAM
-
Linux SMP list: FIRST see FAQ at http://www.irisa.fr/prive/dmentre/smp-howto/
To Unsubscribe: send "unsubscribe linux-smp" to [EMAIL PROTECTED]