Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Linux BogoMips mini-HOWTO (part 1/1)

0 views
Skip to first unread message

Wim C.A. van Dorst

unread,
Jul 14, 1996, 3:00:00 AM7/14/96
to

Archive-name: linux/howto/mini/bogomips
Last-modified: 29 Jun 96

-----BEGIN PGP SIGNED MESSAGE-----

*** The `Linux BogoMips mini-HOWTO' is posted automatically by the
*** Linux HOWTO coordinator, Greg Hankins <gr...@sunsite.unc.edu>. Please
*** direct any comments or questions about this HOWTO to the author,
*** Wim C.A. van Dorst <ba...@clifton.hobby.nl>.

- --- BEGIN Linux BogoMips mini-HOWTO part 1/1 ---


BogoMips mini-Howto
Wim C.A. van Dorst <ba...@clifton.hobby.nl>
28 June 1995

This text gives a little information about BogoMips, compiled
from various sources by news and mail. This text is retrievable
from the various Linux archives in ~linux/docs/HOWTO/mini/BogoMips.
An article was published in the Linux Journal, issue January 1996

The Lowest Linux BogoMips:
Tim Van der Linden <tim...@innet.be>
Intel 8088/4.77
0.02 BogoMips

The Highest Linux BogoMips:
Kevin Jacobs <jac...@eek.cwru.edu>
Alpha 21064A/275
274.11 BogoMips


- ------------------------------------------------------------------------------
Contents of this mini-HOWTO:

1. What are BogoMips Lars Wirzenius
2. How to estimate BogoMips several authors
3. Variations in BogoMips rating Linus Torvalds
4. Standalone BogoMips program Jeff Tranter
5. BogoMips ... failed Wim van Dorst
6. What about clone CPUs Wim van Dorst
7. Why to pay attention to BogoMips Wim van Dorst

8. Compilation of ratings Wim van Dorst
A. Oddly or faultly configured 386 systems
B. Normal 386SX systems
C. Normal 386DX systems
D. Oddly or faultly configured 486 systems
E. Cyrix/IBM configured 486 systems
F. Normal 486 systems
G. Oddly or faultly configured Pentium systems
H. Normal Pentium systems
I. Normal Alpha systems
J. Normal Motorola systems
K. Other systems: Sparc, PowerPC, Mips, Intel 8088
L. Non-Linux systems (reference only)


- ------------------------------------------------------------------------------
1. What are BogoMips

>From Lars Wirzenius' <wirz...@kruuna.Helsinki.FI> mail
of 9 September 1993, explaining Bogomips, with additional
detailed information by Wim van Dorst:

`MIPS is short for Millions of Instructions Per Second.
It is a measure for the computation speed of a program.
Like most such measures, it is more often abused than
used properly (it is very difficult to justly compare
MIPS for different kinds of computers).

BogoMips are Linus's invention. The kernel (or was it a
device driver?) needs a timing loop (the time is too
short and/or needs to be too exact for a non-busy-loop
method of waiting), which must be calibrated to the
processor speed of the machine. Hence, the kernel
measures at boot time how fast a certain kind of busy
loop runs on a computer. "Bogo" comes from "bogus", i.e,
something which is a fake. Hence, the BogoMips value
gives some indication of the processor speed, but it is
way too unscientific to be called anything but BogoMips.

The reasons (there are two) it is printed during bootup
is that a) it is slightly useful for debugging and for
checking that the computers caches and turbo button work,
and b) Linus loves to chuckle when he sees confused
people on the news.'

BogoMips are being determined in /usr/src/linux/init/main.c
(simple C algorithm), and the pertaining kernel variable
loops_per_sec is used in various drivers of the net, scsi,
and char sections. The actual delay functions are in assembler,
and therefore each port has their own in include/asm/delay.h.
This loops_per_sec variable is used in various drivers for
char, net, and scsi devices (see `find /usr/src/linux -name
'*.[hcS] -print -exec fgrep loops_per_sec {} \;`)

- ------------------------------------------------------------------------------
2. How to estimate BogoMips

>From a initiative by Ian Jackson <ijac...@nyx.cs.du.edu> and
Przemek Klosowski, much updated and expanded by Wim van Dorst for
current data, as listed below:

As a very approximate guide the BogoMips can be calculated by:

System BogoMips Comparison
Intel 8088 clock * (0.004 plusminus 0.001) 0.02
Intel/AMD 386SX clock * (0.14 plusminus 0.01) 0.8
Intel/AMD 386DX clock * (0.18 plusminus 0.01) 1 (definition)
Motorola 68030 clock * (0.25 plusminus 0.005) 1.4
Cyrix/IBM 486 clock * (0.34 plusminus 0.065) 1.8
Intel Pentium clock * (0.40 plusminus 0.035) 2.2
Intel/AMD 486 clock * (0.50 plusminus 0.01) 2.8
Mips R4000/R4400 clock * (0.50 plusminus 0.015) 2.3
PowerPC 601 clock * (0.77 plusminus 0.015) 4.5
Alpha 21064/21066 clock * (0.99 plusminus 0.005) 5.5
Intel Pentium Pro clock * (0.99 plusminus 0.005) 5.5
Mips R4600 (insufficient data yet)
Motorola 68040 (insufficient data yet)
Motorola 68060 (insufficient data yet)
Sparc (insufficient data yet)

Note that the BogoMips calculation loop does not take advantage
of the parallelism of the Pentium processor.
Note that the BogoMips calculation loop for the non-Intel
CPUs is similar but not linearly equivalent.


- ------------------------------------------------------------------------------
3. Variations in BogoMips rating

>From Linus Torvalds <torv...@cc.helsinki.fi>, explaining about the
variation one may see in the BogoMips rating, in c.o.l.development,
at 28 April 1994

`The BogoMips calculation loop is "quantizised", so you're
most likely to get the exact same number all the time.
You usually will get different numbers only if the speed
is just on the "edge", when small variations (different
time for interrupt ticks etc) will make it jump from one
value to the other.'


- ------------------------------------------------------------------------------
4. Standalone BogoMips program

>From the readme file of the standalone BogoMips program
by Jeff Tranter <jeff_t...@mitel.com>:

`Tired of rebooting your system so you can see how many
BogoMIPS it's running at today? [...] "Bogomips" is a
standalone program that displays your system performance
using one of the world's most recognized benchmarks. It
uses the same code that is used in the Linux kernel while
booting, but runs as a user program. [...] Version 1.3 of
BogoMIPs is now portable and should run on any system
that supports an ANSI C compiler and library.'

Note that due to system load values calculated with the
standalone program may be lower than registered in the
list below.

Intrinsically the standalone cannot give precisely similar
information to the boot sequence BogoMips, since system
load will compete with this program run by an ordinary user.

The Linux kernel code referred to is used only in the Intel
version, and then defined as 'classic bogomips'. Linux
is ported to really different hardware, and thus other
BogoMips code had to be used, which this standalone program
does not take in account. Therefore the BogoMips measured
with the portable version can be quite different from the
real BogoMips as displayed during booting.


- ------------------------------------------------------------------------------
5. BogoMips ... failed

Suggested by various questions on the net and private mail,
e.g. by Lily <lbl...@alumni.caltech.edu> and by Pierre Frenkiel
<fren...@cdfap2.in2p3.fr>. In March 1995 they asked:

`When I boot Linux I get the message:
Calibrating delay loop.. ok - 23.96 BogoMips
failed
Where/why has the calibration delay loop failed?'

It didn't fail. If it had failed the text would have been
Calibrating delay loop.. failed

What likely did fail was a driver for some gadget which
you may not have in your machine. Just after calculating
the BogoMips rating all device drivers are initiated.
First the SCSI devices, then Net devices, etc. Any
failure is duly reported. Noteworthy is the AHA152x
driver. Other effects of failing drivers (and not of
failing BogoMips calculations) are systems crashes, long
waits, and complete system locks.

Since Linux 1.2 many error messages have improved, so
upgrade to at least that version to find out which
particular driver it is that is failing.

- ------------------------------------------------------------------------------
6. What about clone CPUs (Cyrix, NexGen, etc)

Cyrix 486-like CPUs need cache enabling software, sometimes
referred to as BogoBoost software. Some is available as a
standalone program, some as a kernel patch: all from the
normal archives, in obvious places.

Cyrix Pentium-like CPUs may have their BogoMips improved
drastically by branch-prediction (BIOS option). Note that
the performance improvement is margine. Branch-prediction
is reported not to be 100% stable, and memory faults
may show up. One can give it a try.

NexGen 386-enhanced CPUs, marked as Nx586, are listed as
386-like, since the fact that they are performing like
Pentium machines is not relevant to BogoMips.

- ------------------------------------------------------------------------------
7. Why to pay attention to BogoMips

Let me add that there are only two reasons for paying attention
to the BogoMips rating that is presented on booting Linux:

1. To see whether it is in the proper range for the particular
processor, its clock frequency, and the potentially present
cache. Especially 486 systems are prone to faulty setups of RAM
cache setting (write-back which is wrong for BogoMips, versus
write-through which is ok), turbo-buttons, and such things.

2. To see whether your system is faster than mine. Of course this
is completely wrong, unreliable, ill-founded, and utterly
useless, but all benchmarks suffer from this same problem. So
why not use it? This inherent stupidity has never before stopped
people from using benchmarks, has it? :-)


- ------------------------------------------------------------------------------
8. Compilation of ratings

The following table gives some reported BogoMips ratings for
various systems. Note that the ratings here are from the
Linux actual booting sequence, except of course for the section
on Non-Linux Systems.

A. Oddly or faultly configured 386 systems

System BogoMips Reporter
386DX/16 387 nocache 0.57 H. Peter Anvin <h...@nwu.edu>
386DX/25 0.82 P Wright <philip...@purplet.demon.co.uk>
386DX/25 nocache 1.03 Mark A. Horton <mah...@crl.com>
386SX/16 1.5 Stefan Kromer <s...@galaxy.sunflower.sub.org>
386SX/16 1.6 Bill Davidsen <davi...@tmr.com>
386SX/20 1.87 Paul C. Dulany <pcdu...@wam.umd.edu>
386DX/25(?) 128c 6.03 Chuck Meo <m...@solbourne.com>
386DX/20 13 Ed Runnion <eru...@hubcap.clemson.edu>
Nx586/90 NexGen 67.44 <ro...@wgw.mnsinc.com>
Nx586/90 NexGen 67.44 Robert Gehring <r...@cs.tu-berlin.de>
Nx586/90 NexGen 67.48 David G. Eckard <dgec...@eos.ncsu.edu>
Nx586/100 NexGen 74.34 Cameron L. Spitzer <c...@truffala.sj.ca.us>
Nx586/100 NexGen 256c 74.56 Marius Groenendijk <mar...@cray-systems.lu>
Nx586/100 NexGen 81.51 Michael J. Micek <mmi...@muddcs.cs.hmc.edu>

B. Normal 386SX systems

System BogoMips Reporter
386SX/16 Packard Bell 2.05 <root@Belvedere\%hip-hop.suvl.ca.us>
386SX/16 2.09 David E. Fox <df...@belvedere.sbay.org>
386SX/16 2.15 W Stevens <wgst...@math.uwaterloo.co>
386SX/16 2.2 Lech Marcinkowski <puo...@tekla.fi>
386SX/16 2.23 Andrew Bulhak <a...@yoyo.cc.monash.edu.au>
386SX/16 2.23 Steven M. Gallo <smg...@cs.buffalo.edu>
386SX/16 2.34 Kevin Burtch <kbu...@pts.mot.com>
386SX/16 turbo 2.38 Andrew Haylett <a...@gec-mrc.co.uk>
386SX/16 0c 2.43 Adam Clarke <ad...@loose.apana.org.au>
386SX/16 2.49 Waymon <way...@pacifier.com>
386SX/20 2.7 Alex Strasheim <astr...@nyx.cs.du.edu>
386SX/20 2.70 J.L. Brothers <brot...@halcyon.com>
386SXL/25 AMD 2.9 Vaughan R. Pratt <pr...@Sunburn.Stanford.EDU>
386SX/25 AMD 0c 3.06 K.J. MacDonald <ke...@festival.ed.ac.uk>
386SX/25 AMD 3.38 Hamish Coleman <ham...@zot.apana.org.au>
386SX/25 0c 3.52 Rogier Wolff <r.e....@et.tudelft.nl>
386SL/25 Intel 3.57 S Harris <har...@teaching.physics.ox.ac.uk>
386SX/25 AMD 3.62 S Harris <har...@teaching.physics.ox.ac.uk>
386SX/33 Intel 4.06 Kenneth J. Hoover <k...@PSUEDVAX.PSU.EDU>
386SX/33 4.71 Alexander Komlik <ap...@l.ukrcom.kherson.ua>
386SX/40 Intel 0c 6.03 Michael Kenyon <u3...@keele.ac.uk>

C. Normal 386DX systems

System BogoMips Reporter
386DX/16 2.49 Mike <mi...@emgee.demon.co.uk>
386DX/20 Intel 3.0 Malcolm Reeves <ree...@rocky1.usask.cs>
386DX/20 Intel 3.08 Si. Harris <har...@teaching.physics.ox.ac.uk>
386DX/20 Nec Powermate 3.22 David J Dawkins <dav...@isl.co.uk>
386DX/20 Micronics 3.25 M Haardt <u31...@informatik.RWTH-Aachen.DE>
386DX/20 3.67 Joost Helberg <jhel...@nlsun8.oracle.nl>
386DX/25 3.91 Ian McCloghrie <imcc...@cs.ucsd.edu>
386DX/25 3.95 Grant Edwards <gra...@aquarius.rosemount.com>
386DX/25 32cache 4.53 J.M.A. Lahtinen <jmal...@klaava.Helsinki.FI>
386DX/33 5.86 Tim Lacy <ti...@microsoft.com>
386DX/33 64cache 5.99 Lars Wirzenius <wirz...@kruuna.Helsinki.FI>
386DX/33 Intel 5.99 Harri Pasanen <hpas...@cs.hut.fi>
386DX/33 no387 6.03 Joel B.Levin <le...@bbn.com>
386DX/33 387 6.03 Peter Bechtold <pe...@fns.greenie.muc.de>
386DX/40 6.21 J.L. Brothers <brot...@halcyon.com>
386DX/33 6.46 Dennis Robinson <djro...@uxa.cso.uiuc.edu>
386DX/33 6.5 Dean Nelson <deann...@aol.com>
386DX/33 387 256cache 6.65 Wim van Dorst <ba...@clifton.hobby.nl>
386DX/33 6.65 Rick Lim <ric...@opus.freenet.vancouver.bc.ca>
386DX/33 6.7 Craig Hagan <ha...@cih.com>
386DX/40 6.99 Ken Wilcox <wil...@math.psu.edu>
386DX/40 AMD 7.76 Joe Phillips <rcha...@letter.com>
386DX/40 AMD 7.10 Kerry Person <kpe...@plains.NoDak.edu>
386DX/40 7.10 D. Bikram Singh <a336...@cdf.toronto.edu>
386DX/40 128cache 7.23 Julian Francis Day <jf...@aber.ac.uk>
386DX/40 bogoboosted 7.23 Pat St Jean <stj...@math.enmu.edu>
386DX/40 AMD 128cache 7.23 R.Bergs <ra...@akela.informatik.rwth-aachen.de>
386DX/40 slow DRAM 7.26 John Lockwood <lock...@pan.vlsi.uiuc.edu>
386DX/40 128c 7.29 Karsten Friese <ftd...@ftd.ericsson.se>
386DX/40 7.29 E.C. Garrison <er...@nickel.ucs.indiana.edu>
386DX/40 7.29 Darin Cowan <co...@rubicon.org>
386DX/40 7.29 Bonne van Dijk <bo...@cs.utwente.nl>
386DX/40 AMD 7.76 Todd Lindner <tlin...@panix.com>
386DX/40 7.76 Bear Giles <be...@indra.com>
386DX/40 AMD 387 64c 7.91 <wi...@gnu.ai.mit.edu>
386DX/40 7.98 Frank Pilhofer <f...@informatik.uni-frankfurt.de>
386DX/40 64c 7.98 Dean Junk <dpj...@mm.com>
386DX/40 AMD 32c 7.98 Tommy Olsen <tom...@ifi.uio.no>
386DX/40 AMD 7.98 James Reith <re...@racores.com>
386DX/40 7.98 Aaron T. Baldie <a...@u.washington.edu>
386DX/40 128c 7.98 John Pate <jp...@easynet.co.uk>
386DX/40 7.98 Christian Nelson <cne...@csugrad.cs.vt.edu>
386DX/40 7.98 Alan Peckham <pec...@drei.enet.dec.com>
386DX/40 8.06 Richard Brown <br...@midget.towson.edu>
386DX/40 8.06 Bill G. Bohling <bs...@tali.uchsc.edu>

D. Oddly or faultly configured 486 systems

System BogoMips Reporter
486DX/33 0c 1.45 Mark Gray <vata...@gvu1.gatech.edu>
486SL/25 0c 1.95 Paraskevas Evripidou <ske...@seas.smu.edu>
486DLC/40 0c 2.45 S.Schendel <ssc...@magnus.acs.ohio-state.edu>
486DX/33 128c 2.94 P.J. Nefkens <p.ne...@student.utwente.nl>
486DX4/120 AMD 3.04 Andrew Steinbach <stei...@maroon.tc.umn.edu>
486DX5/133 AMD 3.05 Eric Hagen <eha...@hawaii.edu>
486DX4/100 Cyrix 3.06 Stuart Harvey <sha...@primenet.com>
486DX5/133 AMD 3.06 Charles Galpin <c...@severn.wash.inmet.com>
486DX4/100 3.06 Bear Giles <be...@indra.com>
486DX2/80 3.08 Gerald E. Butler <gbu...@phoenix.kent.edu>
486DX4/120 AMD 3.08 Charles Hines <chuck...@vnet.ibm.com>
486DX4/66 256c 3.10 Riccardo Capella <mc8...@mclink.it>
486DX4/100 wb-cache 3.10 Paul Close <p...@sgi.com>
486DX4/120 3.13 Brian Perkins <bper...@netspace.com>
486DX4/120 AMD 3.15 <eru...@net2.intserv.com>
486DX4/100 3.17 Thomas Sudbrak <sud...@borneo.gmd.de>
486SLC2/50 Cyrix 3.30 Colin J. Wynne <cwy...@sage.wlu.edu>
486DX/33 3.61 Marten van de Laan <mar...@cs.rug.nl>
486DX/33 noturbo 3.61 Dimitris Evmorfopoulos <devm...@mtu.edu>
486DX4/120 3.74 Brian Wheeler <bdwh...@indiana.edu>
486DX4/120 AMD 3.74 Frank Pilhofer <f...@informatik.uni-frankfurt.de>
486DX4/100 Cyrix 256c 4 Joel Kelso <jo...@cs.murdoch.edu.au>
486DX/33 256c noturbo 4.25 Wouter Liefting <wlie...@cs.vu.nl>
486DX/33 4.66 Mark Gray <vata...@gvu1.gatech.edu>
486Rx2 Cyrix 25/50 4.85 <cosc...@menudo.uh.edu>
486SX/33 noturbo 5.21 Scott D. Heavner <s...@fishmonger.nouucp>
486DX2/66 overdrive 5.37 Jeremy Orr <jer...@careercenter.sfsu.edu>
486DX/33 5.66 Ryan Tucker <rtu...@ttgcitn.com>
486DX2/66 5.88 P.J. Nefkens <p.ne...@student.utwente.nl>
486DX4/100 5.94 Howard Goldstein <h...@n2wx.ampr.org>
486DX4/100 AMD 5.94 Mr Pink <vi...@dallas.demon.co.uk>
486DX4/100 notebook 6.55 Thomas <t...@dirac.physik.uni-konstanz.de>
486DX4/100 notebook 6.55 Hugh McCurdy <hmcc...@ix.netcom.com>
486SLC Cyrix 7 Pieter Verhaeghe <pi...@uia.ac.be>
486SX/33 7.84 Paul Hedderly <pr...@unix.york.ac.uk>
486DLC/40 7.98 Wil Cromer <nw...@Ra.MsState.Edu>
486DX4/100 11.11 NN <use...@uxmail.ust.hk>
486DX4/100 11.3 Earl Gooch <ego...@mc.com>
486/66 Cyrix 13.02 Mike Baptiste <bapt...@bnr.ca>
486SLC2/25 14.6 Vaughan R. Pratt <pr...@Sunburn.Stanford.EDU>
486DX2/66 laptop 14.46 Robert Knop <rk...@netcom.com>
486SLC2/66 18.94 <ro...@avalon.net>
486DX/33 turbo 19.98 C Vetter <cbve...@informatik.th-darmstadt.de>
486SX-S/33 UMD 0c 20.20 Hynek Med <xme...@manes.vse.cz>
486DX4/75 21.5 Theo Scott <rkw...@pukrs3.puk.ac.za>
486DX4/75 24.13 Sherman Hsieh <sh...@csua.berkeley.edu>
486DX2/58 26.3 Vassili Leonov <leo...@iedv7.acd.com>
486SX-S/40 UMD 0c 26.63 Hynek Med <xme...@manes.vse.cz>
486SX-U5/40 UMC 0c 26.63 Dusan Mihajlovic <zd...@herkules.co.yu>
486DX4/100 overclock 28.67 Theo Scott <rkw...@pukrs3.puk.ac.za>
486DX2/80 36 Mark Lee <ml...@heartlab.rri.uwo.ca>
486DX2/80 50.08 Mark Lee <ml...@heartlab.rri.uwo.ca>
486DX4/100 60 Sebastien Dedieu <ded...@emi.u-bordeaux.fr>
486DX2/100 overclock 60.45 Tony D Shan <tds...@pitt.edu>
486DX5/133 AMD 75.40 Jeff Hyche <jwh...@scott.net>
486DX5/133 AMD 80.08 NN <gue...@slip-29-7.ots.utexas.edu>
486DX5/133 AMD 87 John Wiggins <jwig...@comp.uark.edu>

E. Cyrix/IBM configured 486 systems

System BogoMips Reporter
486DLC/33 9.42 Dennis Robinson <djro...@uxa.cso.uiuc.edu>
486DLC/33 387DX/40 9.47 Denis Solaro <dr...@vectrex.login.qc.ca>
486DLC/33 Cyrix wb 9.5 Matthew Asplund <ma...@xenon.cchem.berkely.edu>
486DLC/33 Cyrix 386 11.2 Alex Freed <fr...@europa.orion.adobe.com>
486DLC/40 256c 11.33 S.Schendel <ssc...@magnus.acs.ohio-state.edu>
486Dx/40 Cyrix 11.73 Malcolm Bremer <mal...@strw.LeidenUniv.nl>
486DRx2/40 Cyrix 13.10 Christopher Lau <cl...@acs.ucalgary.ca>
486DX/33 Cyrix 13.21 M Haardt <u31...@informatik.RWTH-Aachen.DE>
486DLC/40 bogoboost 13.21 Harry Pasanen <p...@tekla.fi>
486DLC/40 487 Cyrix 13.21 Ian A. Verschuren <i...@po.CWRU.Edu>
486DCL Cyrix 13.3 Tracer Bullet P.I. <g...@earth.baylor.edu>
486DLC/40 13.31 Adam Frampton <fram...@access2.digex.net>
486DLC/40 13.31 Rick Chow <c...@cacs.usl.edu>
486SLC-S/33 13.51 Brad Pepers <pep...@cuug.ab.ca>
486DLC/40 no Cxpatch 15.47 Sergei O. Naoumov <se...@envy.astro.unc.edu>
486DLC/40 TI 128c 15.97 Philip K. Roban <ph...@seal.micro.umn.edu>
486DLC/40 Cyrix 15.97 Louis J. LaBash <lab...@lcjones.aclib.siue.edu>
486DRx2/40 15.99 Christopher Lau <la...@fusion.cuc.ab.ca>
486DX2/66 IBM no-FF 19 NN <coo...@pmifeg.com>
486SLC2/66 IBM 64c 18.95 Sujat Jamil <su...@shasta.ee.umn.edu>
486SLC2/66 IBM 128c 18.95 Sujat Jamil <su...@shasta.ee.umn.edu>
486SLC2/66 19.02 Harry Mangalam <mang...@uci.edu>
486SLC/50 19.28 Sion Arrowsmith <si...@bast.demon.co.uk>
486BL3/75 IBM 256c 21.50 Ming S. Chan <ming...@canrem.com>
486DX2/66 Cyrix 128c 26.63 Derek Kwan <dk...@zeus.UWaterloo.ca>
486DX2/66 Cyrix 26.63 Adrian Parker <adr...@willen.demon.co.uk>
486DX2-S/66 256c 26.63 Jean-Marc Wislez <JeanMar...@rug.ac.be>

F. Normal 486 systems

System BogoMips Reporter
486SX/20 DECpc 9.98 Thomas Pfau <pf...@cnj.digex.com>
486SX/25 12.24 M. Buchenrieder <mi...@scrum.greenie.muc.de>
486SX/25 12.3 Darren McKay <e9...@unb.ca>
486SX/25 12.42 Mark R. Lindsey <mlin...@nyx.cs.du.edu>
486DX/25 12.5 Phillip Hardy <phi...@mserve.kiwi.gen.nz>
486SX/25 12.52 Emmanual Emore <emor...@elan.rowan.edu>
486DX/33 256c 16.33 Eric Kemminan <ekem...@pms709.ms.ford.com>
486DX/33 16.35 Christopher L. Morrow <cm...@andrew.cmu.edu>
486DX/33 16.43 Rob Janssen <pe1...@amsat.org>
486DX/33 64cache 16.44 H. Peter Anvin <h...@nwu.edu>
486DX/33 256c DIY 16.44 Wouter Liefting <wlie...@cs.vu.nl>
486DX/33 Intel 128c 16.44 Rafal Kustra <g1kr...@cdf.toronto.edu>
486DX/33 16.5 Alex Freed <fr...@europa.orion.adobe.com>
486DX/33 16.6 Vaughan R. Pratt <pr...@Sunburn.Stanford.EDU>
486DX/33 noturbo 16.61 C Vetter <cbve...@informatik.th-darmstadt.de>
486DX/33 16.61 Jeffrey L. Newbern <jnew...@athena.mit.edu>
486DX/33 16.61 Giuseppe De Marco <gdem...@freenet.hut.fi>
486DX/33 16.61 M Heuler <heu...@informatik.uni-wuerzburg.de>
486DX/33 16.61 Frank Lofaro <ftlo...@unlv.edu>
486DX/33 16.77 Donald Lewis <dle...@jackson.freenet.org>
486DX/33 16.77 Stephan Boettcher <sta...@alzt.tau.ac.il>
486DX/33 256c 16.77 David Manchester <mus...@tartarus.uwa.edu.au>
486DX/40 19.8 Jose Calhariz <c...@minerva.inesc.pt>
486DX/40 19.91 M Heuler <heu...@informatik.uni-wuerzburg.de>
486DX/40 19.96 David A. Ranch <dra...@ecst.csuchico.edu>
486DX/40 AMD 19.97 M Haardt <u31...@informatik.RWTH-Aachen.DE>
486DX/40 Intel 19.97 Paul van Spronsen <vs...@teppic.sun.ac.za>
486DX/40 19.97 Ulf Tietz <u...@rio70.bln.sni.de>
486DX/40 19.97 <Eberhard\_Moenk...@p27.rollo.central.de>
486DX/40 19.97 Zoltan Lajber <la...@lajli.gau.hu>
486DX/40 19.97 Wim van Dorst <ba...@wiesje.hobby.nl>
486DX/40 AMD 20 Chuck Munro <chu...@canada.hp.com>
486DX/50 24.48 Arnd Gehrmann <arnd@rea>
486DX/50 AMD 24.85 Klaas Hemstra <h...@mh.nl>
486DX/50 DTK 24.85 Randolph Christophers <ran...@lna.oz.au>
486DX/50 24.85 Kevin Lentin <kev...@bruce.cs.monash.edu.au>
486DX2/50 24.85 Jason Matthew <jmat...@kn.pacbell.com>
486DX2/50 24.85 Gregory P. Smith <smi...@cs.colorado.edu>
486DX/50 VLB 24.97 Tom Miller <tv...@en.com>
486DX/50 24.99 Jeff <c...@erols.com>
486DX/50 Intel 256c 24.99 Mike <mi...@emgee.demon.co.uk>
486DX/50 25 Robert Herzog <rhe...@rc1.vub.ac.be>
486DX2/50 25 M. Abrahamsson <swm...@uplift.df.lth.se>
486DX2/50 25.0 Christian Holtje <cho...@ux1.cso.uiuc.edu>
486DX2/50 DECpc 25.04 Thomas Pfau <pf...@cnj.digex.com>
486DX2/50 Eisa 25.04 John Willing <wil...@cimage.com>
486DX2/50 256c 25.04 Zhou Yanmo <zh...@gauss.math.usf.edu>
486DX/50 25.04 Michael Kress <kr...@hal.saar.de>
486DX2/50 25.04 Mats Wikholm <mwik...@news.abo.fi>
486DX2/50 25.04 Jean C Delepine <dele...@linux.u-picardia.fr>
486DX/50 25.04 Jean C Delepine <dele...@linux.u-picardia.fr>
486DX/50 25.04 Kevin Burtch <kbu...@pts.mot.com>
486DX/50 notebook 25.04 Pierre Frenkiel <fren...@cdfap1.in2p3.fr>
486DX/50 25.10 M Heuler <heu...@informatik.uni-wuerzburg.edu>
486DX2/50 25.4 Brian Kennedy <bke...@hubcap.clemson.edu>
486DX2/66 32 Lee Sau Dan <h921...@khuxa.hku.hk>
486DX2/66 32.9 Frederick <ni...@axp745.gsfc.nasa.gov>
486DX2/66 33 Alec Muffett <al...@uk-usenet.uk.sun.com>
486DX2/66 33 NN <coo...@pmifeg.com>
486DX2/66 33 Steve Tinney <s...@enlil.museum.upenn.edu>
486DX2/66 Intel 33 Chuck Munro <chu...@canada.hp.com>
486DX2/66 VLB 33.0 Sebastien Dedieu <ded...@emi.u-bordeaux.fr>
486DX2/66 AMD 33.05 G. Skinner <gski...@gwsunix1.crystalball.com>
486DX2/66 33.20 Arnd Gehrmann <arnd@rea>
486DX2/66 Intel/PCI 33.22 C. Menke <carste...@post.uni-bielefeld.de>
486DX2/66 33.22 Brian Ricker <gt2...@prism.gatech.edu>
486DX2/66 33.22 Don Bennett < <d...@engr.mun.ca>
486DX2/66 33.22 Robert Heller <hel...@cs.umass.edu>
486DX2/66 33.22 Warwick Ward-Cox <ww...@lostlink.alt.za>
486DX2/66 33.22 Chien-An Chen <gi...@nwu.edu>
486DX2/66 Eisa/VL 33.22 Serge <sviz...@magnus.acs.ohio-state.edu>
486DX2/66 AMD 33.22 Wayne Robinson <way...@renoir.cftnet.com>
486DX2/66 Intel 33.22 Jim Barber <ye...@marsh.cs.martin.edu.au>
486DX2/66 33.22 Tom Lowery <tlo...@mcs.kent.edu>
486DX2/66 33.27 S Viznyuk <sviz...@magnus.acs.ohio-state.edu>
486DX2/66 33.3 Devon Tuck <de...@netcom.com>
486DX2/66 256cache 33.4 H. Peter Anvin <h...@nwu.edu>
486DX2/66 33.5 Jongyoon Lee <m...@netcom.com>
486DX2/66 33.5 Petrovsky Alexey <go...@cs.msu.su>
486DX2/66 33.5 Sung Lee <sl...@umbc.edu>
486DX2/66 33.55 Gene McCulley <mccu...@greatwall.cctt.com>
486DX2/66 33.55 W. Zeilinger <wz...@doradus.ast.univie.ac.at>
486DX2/66 33.55 Donald Lewis <dle...@jackson.freenet.org>
486DX2/66 33.55 Eric Malkowski <ma...@world.std.com>
486DX2/66 0c 33.55 Chris Petit <mys...@ix.net.com>
486DX2/66 33.55 <al...@minster.york.ac.uk>
486DX2/66 33.55 Jesper de Jong <jes...@cas.et.tudelft.nl>
486DX2/66 33.55 John Paul Morrison <jmor...@bogomips.com>
486DX2/66 33.55 Arash <ei3...@ios.chalmers.se>
486DX2/66 33.55 Ralph Lewis <rle...@mail.wsu.edu>
486DX2/66 33.55 Ulisses Alonso Camaro <alo...@bebe.uv.es>
486DX2/66 33.55 Bussmann <buss...@wolpi.infomatik.uni-bonn.de>
486DX2/66 Intel/PCI 33.55 Louis J. LaBash <lab...@lcjones.aclib.siue.edu>
486DX2/66 Intel 33.55 Andrew Tubbiolo <eni...@seds.lpl.arizona.edu>
486DX2/66 33.55 W Fink <werne...@physik.uni-stuttgart.de>
486DX2/66 ICL 33.55 Mathias Koerber <mat...@solomon.technet.sg>
486DX2/66 33.55 Bill Pogue <g...@dithots.dithots.org>
486DX2/66 256c 33.58 Theo Scott <rkw...@pukrs3.puk.ac.za>
486DX2/66 33.7 C Triantafillou <tri...@pegasus.montcleair.edu>
486DX2/66 256c Intel 33.81 S Harris <har...@teaching.physics.ox.ac.uk>
486DX2/66 33.9 Magnus Back <era...@eraj.ericsson.se>
486DX2/66 34.06 Al Clark <acl...@netcom.com>
486DX4/75 37.47 G Asmundarson <gre...@wordperfect.com>
486DX2/80 39.93 Andrew Tubbiolo <eni...@seds.lpl.arizona.edu>
486DX2/80 overcl/66 39.94 Mario L. Guttierez <mgu...@mentor.sdu.edu>
486DX2/80 AMD 39.94 Corey D Brenner <bre...@umr.edu>
486DX2/80 39.94 Dan Delaney <cgde...@homer.louisville.edu>
486DX2/80 39.94 D t Haar <da...@caution.cistron.nl.mugnet.org>
486DX2/80 overcl 39.94 Peter Suetterlin <p...@kis.uni-freiburg.de>
486DX2/80 AMD 39.94 JL Gomez <kitana!sy...@caprica.com>
486DX2/80 AMD 39.94 Pete Krawczyk <pkra...@uiuc.edu>
486DX2/80 AMD 40 Rene Baart <ba...@simplex.nl>
486DX2/80 AMD 40 Wolfgang Kalthoff <w...@rio70.bln.sni.de>
486DX2/80 40.0 Rick Brown <cca...@prism.gatech.edu>
486DX2/80 AMD 40.14 Jon Lewis <jle...@inorganic5.chem.ufl.edu>
486DX2/80 AMD 40.14 Richard S. Stone <rst...@edgp.com>
486DX2/80 40.15 Oleg <ol...@hpcms.co.il>
486DX2/80 AMD 40.18 Adri Verhoef <a...@a3.xs4all.nl>
486DX2/80 40.18 Mats Andtbacka <mand...@abo.fi>
486DX2/100 AMD overcl 49.14 Jon Lewis <jle...@inorganic5.chem.ufl.edu>
486DX4/100 256c 49.71 Lutz Pressler <lutz.p...@med-stat.GWDG.de>
486DX4/100 49.71 Brett Gersekowski <bgre...@powerup.com.au>
486DX4/100 Intel 256c 49.77 Angelo Haritsis <a...@doc.ic.ac.uk>
486DX4/100 49.78 Aurel Balmosan <au...@xylo.owl.de>
486DX4/100 49.87 Chris Saia <min...@concentric.net>
486DX4/100 50 Donald Lewis <dle...@jackson.freenet.org>
486DX4/100 50.02 Peter Skov Knudsen <go...@ask.diku.dk>
486DX4/100 50.02 Shadow Weaver <djam...@students.wisc.edu>
486DX4/100 AMD 50.3 Dave <sho...@shodan.clark.net>
486DX4/100 AMD 50.04 Tony Smolar <asm...@fast.net>
486DX4/100 50.05 fredk <fr...@shadow.net>
486DX4/100 50.06 Ronald Prague <ro...@fisnet.net>
486DX4/100 50.08 Matt Gisher <ma...@matt.fidalgo.net>
486DX4/100 50.08 Steven A. Duchene <sduc...@cis.ysu.edu>
486DX4/100 50.08 Miles O'Neal <m...@schoneal.com>
486DX4/100 50.08 Will <zxm...@hp12.zdv.uni-tuebingen.de>
486DX4/100 50.08 Piet de Bondt <bo...@dutiws.twi.tudelft.nl>
486DX4/100 laptop 50.08 Karl Kleinpaste <karl_kl...@cs.cmu.edu>
486DX4/100 256c 50.08 Thomas Kanschik <y000...@ws.rz.tu-bs.de>
486DX4/100 50.08 Linas Vepstas <li...@fc.net>
486DX4/100 50.08 Ed Daiga <da...@engin.umich.edu>
486DX4/100 notebook 50.08 Gerry Quejada <fd...@cleveland.freenet.edu>
486DX4/100 AMD 50.08 B Schuller <schu...@ind136a.wi.leidenuniv.nl>
486DX4/100 50.08 J.L. Brothers <brot...@halcyon.com>
486DX4/100 50.08 Mark Lumsden <ro...@titan2.physics.mcmaster.ca>
486DX4/100 50.08 Ashar <as...@netcom12.netcom.com>
486DX4/100 50.08 Jacob Waltz <wa...@pcjiw.lampf.lanl.gov>
486DX4/100 50.08 Tom Sinclair <sin...@cafe.net>
486DX4/100 AMD 50.08 G. Skinner <gski...@gwsunix1.crystalball.com>
486DX4/100 AMD 50.08 Nick Savoiu <ni...@ritz.mordor.com>
486DX4/100 50.08 Thomas J Fisher <twb...@nmia.com>
486DX4/100 50.08 Pascal Pensa <pe...@aurora.unice.fr>
486DX4/100 50.08 Julian Bradbury <jul...@xabcs.demon.co.uk>
486DX4/100 50.51 Frederic Potter <fred...@swing.ibp.fr>
486DX4/100 50.66 Bill Stegers <bill...@zeelandnet.nl>
486DX4/120 256c 59.1 Kevin <kali...@oakland.edu>
486DX4/120 AMD 59.80 Mark Tranchant <ma...@ecs.soton.ac.uk>
486DX4/120 AMD 59.80 Fred Broce <fbr...@atlanta.com>
486DX4/120 AMD 59.90 Marko Ovaska <ova...@cc.helsinki.fi>
486DX4/120 59.91 Will <zxm...@hp12.zdv.uni-tuebingen.de>
486DX4/120 AMD 256c 60.01 Angelo Haritsis <a...@doc.ic.ac.uk>
486DX4/120 overcl 60.45 Pascal Pensa <pe...@aurora.unice.fr>
486DX4/120 60.45 Neal Howard <ne...@metronet.com>
486DX4/120 AMD 60.45 Oscar Belmar Madrid <obe...@anakena.usach.cl>
486DX4/120 60.45 Jason Buchanan <j...@digistar.com>
486DX4/120 60.45 Foersterling <di...@informatik.uni-frankfurt.de>
486DX4/120 60.45 Bernd Hentig <be...@finow.snafu.de>
486DX5/133 AMD 66.15 Brad Wilson <bwi...@deltanet.com>
486DX5/133 AMD 66.44 P Yli-Krekola <per...@ntcmar01ba.ntc.nokia.com>
486DX5/133 AMD 66.7 Klaas Hemstra <h...@mh.nl>
486DX5/133 UMC 66.80 N.N. <vp24...@ubvms.cc.buffalo.edu>
486DX5/133 AMD 256c 67.10 Vasily Lewis <vle...@iastate.edu>
486DX5/133 AMD 67.10 James Reith <re...@racores.com>
486DX5/133 AMD 256c 67.10 Peter A. Koren <pko...@lvdc20.dseg.ti.com>
486DX5/133 AMD 256c 67.10 Wim Joppe <jo...@xs4all.nl>
486DX5/133 AMD 256c 67.10 Gunnar Stefansson <gun...@rhi.hi.is>
486DX5/133 AMD 256c 67.10 Vernard Martin <vernard...@cc.gatech.edu>
486DX5/150 AMD overcl 74.75 Sergio Riveros <riv...@musca.unm.edu>
486DX5/150 AMD overcl 74.75 Arthur K. Chan <art...@cs.ucr.edu>
486DX5/160 AMD overcl 79.89 Martin Vernon <mar...@gw6hva.demon.co.uk>
486DX5/160 AMD overcl 80.36 Paul Colucci <pcol...@acsu.buffalo.edu>
486DX5/160 Cyrix 80.36 David H.S. Oh <da...@std.net>

G. Oddly or faultly configured Pentium systems

System BogoMips Reporter
Pentium/66 2.18 Bob Myers <ro...@shyguy.lonestar.org>
Pentium/90 notebook 9.5 Mark Maybee <ma...@cs.colorado.edu>
Pentium/100 36.08 Leung Hon Wa <cshw...@cs.citu.edu.hk>
Pentium/83 OD 82.85 Brian Smith <smi...@laraby.tiac.net>
Pentium/83 OD 83.32 Scott Francis <mo...@netcom.com>
Pentium/100 Cyrix 100.16 NN <ro...@anxa04.cc.ic.ac.uk>
Pentium/100 100.19 Valient Gough <vgo...@teton.mines.edu>
Pentium/100 Cyrix 100.47 C.Chan <ch...@alfrothul.uchicago.edu>
Pentium/120 Cyrix 119.60 Joel N. Squire <squ...@colorado.edu>
Pentium/120 Cyrix 119.83 NN <ro...@anxa04.cc.ic.ac.uk>
Pentium/120 Cyrix 120.68 C.Chan <ch...@alfrothul.uchicago.edu>
Pentium/166 Cyrix 132.88 Craig Andersen <ande...@fastlane.net>

H. Normal Pentium systems

System BogoMips Reporter
Pentium/60 23 Chien-An Chen <gi...@nwu.edu>
Pentium/60 23.96 Joost Helberg <jhel...@nlsun8.oracle.nl>
Pentium/60 23.96 Ulf Tietz <u...@rio70.bln.sni.de>
Pentium/60 Gateway 23.96 Manoj Kasichainula <mvka...@eos.ncsu.edu>
Pentium/60 23.96 Pierre Frenkiel <fren...@cdfap1.in2p3.fr>
Pentium/60 23.96 Tim Oosterbroek <t...@astro.uva.nl>
Pentium/60 NCR 3455 24 Mathias Koerber <mat...@solomon.technet.sg>
Pentium/60 24 Joe Sloan <j...@engr.ucr.edu>
Pentium/60 24.0 Mark H. Wood <mw...@indyvax.iupui.edu>
Pentium/60 24.13 Roland M. van Rijswijk <rijs...@cs.utwente.nl>
Pentium/66 25 Chuck Munro <chu...@canada.hp.com>
Pentium/66 26.63 Jason M. Naughton <jnau...@ee.ryerson.ca>
Pentium/66 26.84 Kelly Carmichael <kcar...@cln.etc.bc.ca>
Pentium/75 256c 29.5 Chris Dodd <cd...@super.win.or.jp>
Pentium/75 29.95 Steve Martin <sma...@mrg.uswest.com>
Pentium/75 30.22 Zoran Marjanski <bag...@enterprise.ca>
Pentium/75 30.22 Andrew Buckby <c4...@dmu.ac.uk>
Pentium/75 30.22 Stuart Nuttall <u923...@sys.uea.ac.uk>
Pentium/90 notebook 32.73 Rich Neves <ne...@cs.colorado.edu>
Pentium/90 34.07 Alistair Galbraith <ajg...@postman.essex.ac.uk>
Pentium/90 zappa 256c 35.6 Sebastien Dedieu <ded...@emi.u-bordeaux.fr>
Pentium/90 35.88 Joe Anderson <CP...@ttacs3.ttu.edu>
Pentium/90 35.88 Warwick Allison <war...@cs.uq.oz.au>
Pentium/90 36 Joe Sloan <j...@engr.ucr.edu>
Pentium/90 36 Larry Auton <l...@nfa.research.att.com>
Pentium/90 36 Richard Knipe <kn...@lobby.ti.com>
Pentium/90 36.0 Werner Almesberger <alme...@lrc.epfl.ch>
Pentium/90 36.06 Rob J. Nauta <r...@iaehv.nl>
Pentium/90 Zeos 36.08 Chris Laurel <cla...@mr.net>
Pentium/90 36.08 Ronald Prague <ro...@fishnet.net>
Pentium/90 36.08 Adrian Blues <adr...@hypereality.co.uk>
Pentium/90 36.08 Pak Yin Tam "Fred" <pt...@eesun1.tamu.edu>
Pentium/90 36.08 Jason Heiss <jhe...@cco.caltech.edu>
Pentium/90 36.08 Tim Krantz <t...@dsinc.com>
Pentium/90 Gateway 36.08 Pete Stewart <ste...@bae.bellcore.com>
Pentium/90 36.08 Tom Manos <tma...@infi.net>
Pentium/90 36.08 Richard Mundell <R.Mu...@uea.ac.uk>
Pentium/90 36.08 NN <use...@uxmail.ust.hk>
Pentium/90 36.08 Yavuz Batmaz <yav...@knidos.cc.metu.edu.tr>
Pentium/90 36.08 Alan Skelley <aske...@gpu.srv.ualberta.ca>
Pentium/90 36.08 Ralph Sims <ral...@locus.halcyon.com>
Pentium/90 36.08 Julian Bradbury <jul...@xabcs.demon.co.uk>
Pentium/90 36.08 Dan Langrill <lang...@mussel.cig.mot.com>
Pentium/90 36.08 Ravi Krishna Swamy <rks...@eos.ncsu.edu>
Pentium/90 36.08 J.L. Brothers <brot...@halcyon.com>
Pentium/90 Micronics 36.09 Andrew Brown <andre...@acm.org>
Pentium/90 36.27 Giao H. Phan <gi...@concrete.resnet.upenn.edu>
Pentium/90 Plato 36.4 Joe Valenzuela <sm...@ibm.net>
Pentium/90 36.5 Mike Kelleher <mik...@umfacad.maine.edu>
Pentium/90 36.9 Ted Gaunt <tga...@pms701.pms.ford.com>
Pentium/100 39.52 Adrian Blues <adr...@hypereality.co.uk>
Pentium/100 overcl 39.73 Phil Howard <ph...@clr.com>
Pentium/100 0c 39.73 Jason Crawford <jas...@gramercy.ios.com>
Pentium/100 39.93 Tom Miller <tv...@en.com>
Pentium/100 Cyrix 39.94 Mike Holland <m...@cygnus.uwa.edu.au>
Pentium/100 39.94 KAZ Vorpal <k...@upx.net>
Pentium/100 overcl 39.94 Donar G.E. Alofs <do...@cs.vu.nl>
Pentium/100 39.94 Larry Snyder <la...@trauma.iag.net>
Pentium/100 39.94 Ian Hill <i...@hecate.phy.queensu.ca>
Pentium/100 39.94 John Crawford <li...@spu.edu>
Pentium/100 39.94 Jered <je...@mit.edu>
Pentium/100 overcl 39.94 Ian <ir...@tweedledum.amp.york.ac.uk>
Pentium/100 39.94 Brian McGhee <bri...@iceonline.com>
Pentium/100 39.94 M Skjelland <morten.s...@pvv.unit.no>
Pentium/100 39.96 Dan Kha <dk...@yorku.ca>
Pentium/100 39.98 Phillipe Charon <cha...@ecoledoc.ibp.fr>
Pentium/100 40.08 Ronny Spiegel <rspi...@htwm.de>
Pentium/100 40.18 David Baldwin <dav...@exis.net>
Pentium/100 40.18 <hab...@catevr.fiu.edu>
Pentium/120 Cyrix 47.8 Simon Ho <si...@epsilon.win-uk.net>
Pentium/120 Cyrix 47.92 Joel N. Squire <squ...@colorado.edu>
Pentium/120 47.93 Umberto d'Ortona <umb...@grenet.fr>
Pentium/120 Cyrix 47.93 Jim T. Polk <jtp...@cris.com>
Pentium/120 47.93 Jon Trowbridge <tr...@mcs.com>
Pentium/120 47.98 Craig Bates <cba...@psu.edu>
Pentium/120 Cyrix 48 Steve <ho...@mhd2.pfc.mit.edu>
Pentium/120 48.00 Michael Wazenski <mwaz...@dsrnet.com>
Pentium/120 Cyrix 48.27 Glenn T. Jayaputera <g...@budgie.apana.org.au>
Pentium/120 48.27 Roman Mitnitski <mit...@shany.net>
Pentium/120 48.27 Peter Walsh <pwa...@rain.org>
Pentium/120 Cyrix 48.2 S Viznyuk <sviz...@magnus.acs.ohio-state.edu>
Pentium/133 53.26 Donald Lewis <dle...@jackson.freenet.org>
Pentium/133 53.26 Jon Trowbridge <tr...@kremlin.emccta.com>
Pentium/133 53.26 Charny Peete Mitchell <cpm...@eos.ncsu.edu>
Pentium/133 256c 53.26 David Wuertele <da...@gctech.com>
Pentium/133 256c 53.68 Guiseppe Miceli <fe...@ccii.unipi.it>
Pentium/133 53.68 Michael Kress <kr...@hal.saar.de>
Pentium/150 Intel 59.80 Joel D. Young <jdy...@afit.af.mil>
Pentium/166 66.44 Donald Lewis <dle...@jackson.freenet.org>
Pentium/166 67.10 Jon Trowbridge <tr...@mcs.com>
Pentium/166 67.10 Dylan <dy...@ert.com>
Dual Pentium/90 SMP 71.98 Daniel Luhde-Thompson <dl1...@cam.ac.uk>
Dual Pentium/90 SMP 72.08 Alan Cox <al...@cymru.net>
Pentium Pro/133 132.88 John D. Sundberg <jdsun...@mmm.com>
Pentium Pro/200 198.84 Marc Winkler <mar...@healthchex.com>
Pentium Pro/200 199.07 Chris Jones <ch...@planetsymphone.com>
Pentium Pro/200 200.32 Jose Navarro <jnav...@aoc.nrao.edu>
Pentium Pro/200 200.32 Wayne Scott <wsc...@ichips.intel.com>

I. Normal Alpha systems

System BogoMips Reporter
Alpha 21064/150 512c 148.37 Linus Torvalds <torv...@cc.helsinki.fi>
Alpha 21064/150 149.49 J.L. Brothers <brot...@halcyon.com>
Alpha 21066/166 164.59 David Mosberger-Tang <dav...@cs.arizona.edu>
Alpha 21066/166 165 Gareth Bult <gar...@ftech.net>
Alpha 21066/166 256c 165.04 Craig Ruff <cr...@ncar.ucar.edu>
Alpha 21066/200 overcl 196.9 Danny ter Haar <da...@cistron.nl>
Alpha station-400 230.16 Ophir Ronen <op...@connectsoft.com>
Alpha 21066A/233 230.67 T. Bogendoerfer <tsbo...@bigbug.franken.de>
Alpha 21066A/233 256c 230.68 Wim van Dorst <ba...@clifton.hobby.nl>
Alpha 21066A/233 230.76 Mikael Nykvist <vi...@ludd.luth.se>
Alpha 21064A/275 2048c 272 Linus Torvalds <torv...@cc.helsinki.fi>
Alpha 21064A/275 272 Stephen Gaudet <s...@tiac.net>
Alpha 21064A/275 272.63 Jay Estabrook <jest...@amt.tay1.dec.com>
Alpha 21064A/275 273.37 David Mosberger-Tang <dav...@cs.arizona.edu>
Alpha 21064A/275 274.11 Kevin Jacobs <jac...@eek.cwru.edu>
Alpha 21064A/300 overcl 298 Jay Estabrook <jest...@amt.tay1.dec.com>
Alpha 21064A/300 overcl 298 Stephen Gaudet <s...@tiac.net>

J. Normal Motorola systems

System BogoMips Reporter
68030/16 Atari Falcon 3.95 J.L. Brothers <brot...@halcyon.com>
68030/16 Atari Falcon 3.98 <Roman...@informatik.uni-erlangen.de>
68030/20 0c 4.92 Chris Nadigh <chrn...@iiic.ethz.ch>
68030/25 Amiga 3000 6.21 Hamish Macdonald <ham...@bnr.ca>
68030/25 Amiga 3000 6.21 J.L. Brothers <brot...@halcyon.com>
68030/32 Atari Falcon 7.91 Franz Korntner <fkor...@bazis.nl>
68030/32 Atari MegaST 7.98 E.J. van den Bussche <buss...@ksepl.nl>
68030/33 Atari TT 7.98 <Roman...@informatik.uni-erlangen.de>
68030/48 32c 11.89 Martin Rogge <Martin...@ki.maus.de>
68030/50 Atari 12 <Roman...@informatik.uni-erlangen.de>
68030/50 32c 12.42 Michael Plonus <mi...@pluto.ping.de>
68040/24 Amiga 4000-40 16.6 Hamish Macdonald <ham...@bnr.ca>
68040/24 Amiga 4000-20 16.60 J.L. Brothers <brot...@halcyon.com>
68040/25 Amiga 4000-040 16.61 <Geert.Uyt...@cs.ku-leuven.ac.be>
68040/25 Amiga 4000 16.61 Lawrence <law...@nextwork.rose-hulmand.edu>
68040/66 Medusa T60 22 <Roman...@informatik.uni-erlangen.de>

K. Other Systems: Sparc, PowerPC, Mips, Intel 8088

System BogoMips Reporter
Intel 8088/4.77 0.02 Tim Van der Linden <tim...@innet.be>
Intel 8088/10 0.05 Tim Van der Linden <tim...@innet.be>
Intel 8086 0.5 Kin Lau <ga...@zot.io.org>
Sparc Sun4c 17.94 J.L. Brothers <brot...@halcyon.com>
PowerPC 601/60 Mac6100 45.24 J.L. Brothers <brot...@halcyon.com>
PowerPC 601/66 Mac 51.62 Fred Klein <kl...@des3.u-strasbg.fr>
Mips R4600/134 Tyne 44.97 Ralf Baechle <ra...@waldorf-gmbh.de>
Mips R4000/100 48.30 J.L. Brothers <brot...@halcyon.com>
Mips R4000/100 Magnum 50.03 Andreas Busse <an...@soft-n-hard.de>
Mips R4400/134 Acer Pica 67.10 Andreas Busse <an...@soft-n-hard.de>

L. Non-Linux systems (reference only)

System OS BogoMips Reporter
68020/20 Sun 3 SUNOS 2.0 <kor...@ssl.berkeley.edu>
68020/25 Sun 3-180 SUNOS 4.0 <kor...@ssl.berkeley.edu>
Sparc Sun 3-60 SUNOS 4.00 <tra...@software.mitel.com>
Sparc Sun 3-80 SUNOS 4.00 <tra...@software.mitel.com>
68040/33 HP9000-280 HP-UX 14 <ni...@axp745.gsfc.nasa.gov>
Sparc Sun 4-280 SUNOS 16.0 <kor...@ssl.berkeley.edu>
Sparc Sun IPC/40 Solaris 16.00 <go...@cs.msu.su>
68040 NextStep (?) 16.26 <pete...@coffeehaus.com>
Sparc Sun Sparcstation1 SUNOS 18.00 <tra...@software.mitel.com>
Sparc Sun Sparcstation1+ SUNOS 19 <swm...@uplift.df.lth.se>
Sparc Sun Sparcstation1+ SUNOS 24.00 <tra...@software.mitel.com>
Sparc Sun IPC SUNOS 24.00 <tra...@software.mitel.com>
Sparc Sun Sparcstation2 SUNOS 26.00 <go...@cs.msu.su>
SparcClassic/50 Solaris 32.00 <go...@cs.msu.su>
Sparc Sun ELC SUNOS 32.00 <tra...@software.mitel.com>
HP-PA 9000-720 HP-UX 32.00 <metod....@rzs-hm.si>
Sparc Sun SS10 SUNOS 34.00 <tra...@software.mitel.com>
Pentium/100 Win-NT 36.21 <mar...@healthchex.com>
Sparc Sun Sparcstation2 SUNOS 38.0 <kor...@ssl.berkeley.edu>
Mips R4000/100 Indy (?) 48.00 <p.ve...@organon.akzonobel.nl>
Mips R4000/100 SGI IndySC Irix 48.00 <lzie...@csbsju.edu>
HP-PA 9000-720 HP-UX 48.00 <metod....@rzs-hm.si>
Sparc Sun Sparcstation10d SUNOS 54.0 <kor...@ssl.berkeley.edu>
Sparc SS1000 2CPU SUNOS 58.00 <go...@cs.msu.su>
Alpha 21064/133 Decstation OSF1 64 <ni...@axp745.gsfc.nasa.gov>
Sparc Sun SS5 SUNOS 68.00 <tra...@software.mitel.com>
Sparc Sun SS20 SUNOS 72.00 <tra...@software.mitel.com>
Mips R4400/150 Challenge (?) 74.00 <p.ve...@organon.akzonobel.nl>
Mips R4400/150 Indigo2Extr (?) 74.00 <p.ve...@organon.akzonobel.nl>
HP-PA 9000-715 HP-UX 74.00 <metod....@rzs-hm.si>
Alpha OSF1 92.00 <pete...@coffeehaus.com>
Mips R4400/200 Indigo2Extr (?) 98.00 <p.ve...@organon.akzonobel.nl>
HP-PA 9000-735/99 HP-UX 98.00 <lank...@cs.rug.nl>
Sparc Sun SS5 SUNOS 110 <swm...@uplift.df.lth.se>
Alpha 21064A/233 OSF1 114 <ni...@axp745.gsfc.nasa.gov>
HP-PA 700/125 HP-UX 122 <ni...@axp745.gsfc.nasa.gov>
HP-PA 9000-735/125 HP-UX 122.00 <lank...@cs.rug.nl>
Mips R4600/133 SGI Indy Irix 132 <lzie...@csbsju.edu>
Alpha OSF1 180.0 <mau...@ensinfo.univ-nantes.fr>
Alpha 3000/600S VMS 348.61 <metod....@rzs-hm.si>
Alpha server 1000-4/200 VMS 397.68 <metod....@rzs-hm.si>
Cray J90 Y-MP/100 16CPU Unicos 912.00 <lank...@cs.rug.nl>


- --- END Linux BogoMips mini-HOWTO part 1/1 ---

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2
Comment: finger gr...@cc.gatech.edu for public key

iQCVAwUBMemg0XtNTo2suu5NAQHX7wQAjhmKP0xUyc3JPxxWW2n40k+jVMhypRCw
i50WzjQdwl3gvC18JyneKksEN79o3HzFLJjqy1Dv4CtSev0oI/Iz/kYRR86Y6oao
gU63+xDCeA9jAoXuBCMIX5YiTYKPuk5sq8aCTw1N53Yh1ejexKcMOvgNWDnpR4KM
rGxkXk9s7W0=
=T4Yf
-----END PGP SIGNATURE-----

0 new messages