home *** CD-ROM | disk | FTP | other *** search
/ Caldera Network Desktop 1.0 / caldera-network-desktop-1.0.bin / doc / HOWTO / mini / BogoMips < prev    next >
Text File  |  1996-01-01  |  39KB  |  669 lines

  1.  
  2.                       BogoMips mini-Howto
  3.           Wim C.A. van Dorst  <baron@clifton.hobby.nl>
  4.                            19 December 1995
  5.  
  6. This text gives a little information about BogoMips, compiled
  7. from various sources by news and mail. This text is retrievable 
  8. from ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO/mini/BogoMips.
  9. An article will be published in Linux Journal January 1996
  10.  
  11.    The Lowest Linux BogoMips:    
  12.                   Tim Van der Linden <timvdl@innet.be>
  13.                   Intel 8088/4.77
  14.                   0.02 BogoMips
  15.  
  16.    The Highest Linux BogoMips:
  17.                   Kevin Jacobs <jacobs@eek.cwru.edu>
  18.                   Alpha 21064A/275
  19.                   274.11 BogoMips
  20.  
  21.  
  22. -------------------------------------------------------------------------------
  23. Contents of this HOWTO:
  24.  
  25.    1. What are BogoMips                   Lars Wirzenius
  26.    2. How to estimate BogoMips            several authors
  27.    3. Variations in BogoMips rating       Linus Torvalds
  28.    4. Standalone BogoMips program         Jeff Tranter
  29.    5. BogoMips ... failed                 Wim van Dorst
  30.    6. Why to pay attention to BogoMips    Wim van Dorst
  31.  
  32.    7. Compilation of ratings              Wim van Dorst
  33.       A. Oddly or faultly configured 386 systems
  34.       B. Normal 386SX systems
  35.       C. Normal 386DX systems
  36.       D. Oddly or faultly configured 486 systems
  37.       E. Cyrix/IBM configured 486 systems 
  38.       F. Normal 486 systems
  39.       G. Oddly or faultly configured Pentium systems
  40.       H. Normal Pentium systems
  41.       I. Normal Alpha systems
  42.       J. Normal Motorola systems
  43.       K. Other systems: Sparc, PowerPC, Mips, Intel 8088
  44.       L. Non-Linux systems (reference only)
  45.  
  46.  
  47. -------------------------------------------------------------------------------
  48. 1. What are BogoMips
  49.  
  50. >From Lars Wirzenius' <wirzeniu@kruuna.Helsinki.FI> mail 
  51. of 9 September 1993, explaining Bogomips:
  52.  
  53.    `MIPS is short for Millions of Instructions Per Second.
  54.    It is a measure for the computation speed of a program.
  55.    Like most such measures, it is more often abused than
  56.    used properly (it is very difficult to justly compare
  57.    MIPS for different kinds of computers).
  58.  
  59.    BogoMips are Linus's invention. The kernel (or was it a
  60.    device driver?) needs a timing loop (the time is too
  61.    short and/or needs to be too exact for a non-busy-loop
  62.    method of waiting), which must be calibrated to the
  63.    processor speed of the machine. Hence, the kernel
  64.    measures at boot time how fast a certain kind of busy
  65.    loop runs on a computer. "Bogo" comes from "bogus", i.e,
  66.    something which is a fake. Hence, the BogoMips value
  67.    gives some indication of the processor speed, but it is
  68.    way too unscientific to be called anything but BogoMips.
  69.  
  70.    The reasons (there are two) it is printed during bootup
  71.    is that a) it is slightly useful for debugging and for
  72.    checking that the computers caches and turbo button work,
  73.    and b) Linus loves to chuckle when he sees confused
  74.    people on the news.'
  75.  
  76.  
  77. -------------------------------------------------------------------------------
  78. 2. How to estimate BogoMips
  79.  
  80. >From a initiative by Ian Jackson <ijackson@nyx.cs.du.edu> and
  81. Przemek Klosowski, much updated and expanded by Wim van Dorst for 
  82. current data, as listed below:
  83.  
  84.    As a very approximate guide the BogoMips can be calculated by:
  85.  
  86.      System             BogoMips                           Comparison
  87.      Intel 8088         clock * (0.004 plusminus 0.001)     0.02
  88.      Intel/AMD 386SX    clock * (0.14  plusminus 0.01)      0.8
  89.      Intel/AMD 386DX    clock * (0.18  plusminus 0.01)      1 (definition)
  90.      Motorola 68030     clock * (0.25  plusminus 0.005)     1.4
  91.      Cyrix/IBM 486      clock * (0.34  plusminus 0.065)     1.8
  92.      Intel Pentium      clock * (0.40  plusminus 0.035)     2.2
  93.      Intel/AMD 486      clock * (0.50  plusminus 0.01)      2.8
  94.      Mips R4000/R4400   clock * (0.50  plusminus 0.015)     2.3
  95.      PowerPC 601        clock * (0.77  plusminus 0.015)     4.5
  96.      Alpha 21064/21066  clock * (0.99  plusminus 0.005)     5.5
  97.      Mips R4600         (insufficient data yet)
  98.      Motorola 68040     (insufficient data yet)
  99.      Sparc              (insufficient data yet)
  100.  
  101.    Note that the BogoMips calculation loop is not optimized
  102.    for the parallelism of the Pentium processor. 
  103.    Note that the BogoMips calculation loop for the non-Intel
  104.    CPUs is similar but not linearly equivalent.
  105.  
  106.  
  107. -------------------------------------------------------------------------------
  108. 3. Variations in BogoMips rating
  109.  
  110. >From Linus Torvalds <torvalds@cc.helsinki.fi>, explaining about the 
  111. variation one may see in the BogoMips rating, in c.o.l.development, 
  112. at 28 April 1994
  113.  
  114.    `The BogoMips calculation loop is "quantizised", so you're
  115.    most likely to get the exact same number all the time.
  116.    You usually will get different numbers only if the speed
  117.    is just on the "edge", when small variations (different
  118.    time for interrupt ticks etc) will make it jump from one
  119.    value to the other.'
  120.  
  121.  
  122. -------------------------------------------------------------------------------
  123. 4. Standalone BogoMips program
  124.  
  125. >From the readme file of the standalone BogoMips program
  126. by Jeff Tranter <jeff_tranter@mitel.com>:
  127.  
  128.    `Tired of rebooting your system so you can see how many
  129.    BogoMIPS it's running at today?  [...] "Bogomips" is a
  130.    standalone program that displays your system performance
  131.    using one of the world's most recognized benchmarks.  It
  132.    uses the same code that is used in the Linux kernel while
  133.    booting, but runs as a user program. [...] Version 1.3 of
  134.    BogoMIPs is now portable and should run on any system
  135.    that supports an ANSI C compiler and library.'
  136.  
  137.    Note that due to system load values calculated with the
  138.    standalone program may be lower than registered in the 
  139.    list below.
  140.  
  141.  
  142. -------------------------------------------------------------------------------
  143. 5. BogoMips ... failed
  144.  
  145. Suggested by various questions on the net and private mail, 
  146. e.g. by Lily <lbliao@alumni.caltech.edu> and by Pierre Frenkiel 
  147. <frenkiel@cdfap2.in2p3.fr>. In March 1995 they asked:
  148.  
  149.    `When I boot Linux I get the message:
  150.       Calibrating delay loop.. ok - 23.96 BogoMips
  151.       failed
  152.    Where/why has the calibration delay loop failed?'
  153.  
  154.    It didn't fail. If it had failed the text would have been
  155.       Calibrating delay loop.. failed
  156.  
  157.    What likely did fail was a driver for some gadget which
  158.    you may not have in your machine. Just after calculating
  159.    the BogoMips rating all device drivers are initiated.
  160.    First the SCSI devices, then Net devices, etc.  Any
  161.    failure is duly reported. Noteworthy is the AHA152x
  162.    driver. Other effects of failing drivers (and not of
  163.    failing BogoMips calculations) are systems crashes, long
  164.    waits, and complete system locks.
  165.  
  166.    Since Linux 1.2 many error messages have improved, so
  167.    upgrade to at least that version to find out which
  168.    particular driver it is that is failing.
  169.  
  170.  
  171. -------------------------------------------------------------------------------
  172. 6. Why to pay attention to BogoMips
  173.  
  174. Let me add that there are only two reasons for paying attention
  175. to the BogoMips rating that is presented on booting Linux:
  176.  
  177.    1. To see whether it is in the proper range for the
  178.       particular processor, its clock frequency, and the
  179.       potentially present cache. Especially 486 systems are
  180.       prone to faulty setups of RAM caching, turbo-buttons,
  181.       and such things.
  182.  
  183.    2. To see whether your system is faster than mine. Of
  184.       course this is completely wrong, unreliable,
  185.       ill-founded, and utterly useless, but all benchmarks
  186.       suffer from this same problem. So why not use it? This
  187.       inherent stupidity has never before stopped people
  188.       from using benchmarks, has it? :-)
  189.  
  190.  
  191. -------------------------------------------------------------------------------
  192. 7. Compilation of ratings
  193.  
  194. The following table gives some reported BogoMips ratings for
  195. various systems. Note that the ratings here are from the
  196. Linux actual booting sequence, except of course for the section 
  197. on Non-Linux Systems.
  198.  
  199. A. Oddly or faultly configured 386 systems
  200.  
  201.    System              BogoMips  Reporter
  202.    386DX/16 387 nocache   0.57   H. Peter Anvin <hpa@nwu.edu> 
  203.    386DX/25               0.82   P Wright <philip.wright@purplet.demon.co.uk> 
  204.    386DX/25 nocache       1.03   Mark A. Horton <mahmha@crl.com> 
  205.    386SX/16               1.5    Stefan Kromer <sk@galaxy.sunflower.sub.org> 
  206.    386SX/16               1.6    Bill Davidsen <davidsen@tmr.com>
  207.    386SX/20               1.87   Paul C. Dulany <pcdulany@wam.umd.edu>
  208.    386DX/25(?) 128c       6.03   Chuck Meo <meo@solbourne.com> 
  209.    386DX/20              13      Ed Runnion <erunnio@hubcap.clemson.edu>
  210.  
  211. B. Normal 386SX systems
  212.  
  213.    System              BogoMips  Reporter
  214.    386SX/16 Packard Bell  2.05   <root@Belvedere\%hip-hop.suvl.ca.us>  
  215.    386SX/16               2.15   W Stevens <wgsteven@math.uwaterloo.co> 
  216.    386SX/16               2.2    Lech Marcinkowski <puolalm@tekla.fi> 
  217.    386SX/16               2.23   Andrew Bulhak <acb@yoyo.cc.monash.edu.au> 
  218.    386SX/16               2.23   Steven M. Gallo <smgallo@cs.buffalo.edu> 
  219.    386SX/16               2.34   Kevin Burtch <kburtch@pts.mot.com>
  220.    386SX/16 turbo         2.38   Andrew Haylett <ajh@gec-mrc.co.uk> 
  221.    386SX/16 nocache       2.43   Adam Clarke <adamc@loose.apana.org.au> 
  222.    386SX/20               2.7    Alex Strasheim <astrashe@nyx.cs.du.edu> 
  223.    386SX/20               2.70   J.L. Brothers <brothers@halcyon.com>
  224.    386SXL/25 AMD          2.9    Vaughan R. Pratt <pratt@Sunburn.Stanford.EDU> 
  225.    386SX/25 AMD nocache   3.06   K.J. MacDonald <kenny@festival.ed.ac.uk> 
  226.    386SX/25 AMD           3.38   Hamish Coleman <hamish@zot.apana.org.au> 
  227.    386SX/25 nocache       3.52   Rogier Wolff <r.e.wolff@et.tudelft.nl>
  228.    386SL/25 Intel         3.57   S Harris <harris@teaching.physics.ox.ac.uk> 
  229.    386SX/25 AMD           3.62   S Harris <harris@teaching.physics.ox.ac.uk> 
  230.    386SX/33 Intel         4.06   Kenneth J. Hoover <ken@PSUEDVAX.PSU.EDU> 
  231.    386SX/33               4.71   Alexander Komlik <apkom@l.ukrcom.kherson.ua> 
  232.    
  233. C. Normal 386DX systems
  234.  
  235.    System              BogoMips  Reporter
  236.    386DX/16               2.49   Mike <mike@emgee.demon.co.uk>
  237.    386DX/20 Intel         3.0    Malcolm Reeves <reeves@rocky1.usask.cs> 
  238.    386DX/20 Intel         3.08   Si. Harris <harris@teaching.physics.ox.ac.uk> 
  239.    386DX/20 Nec Powermate 3.22   David J Dawkins <davidd@isl.co.uki> 
  240.    386DX/20 Micronics     3.25   M Haardt <u31b3hs@informatik.RWTH-Aachen.DE>
  241.    386DX/20               3.67   Joost Helberg <jhelberg@nlsun8.oracle.nl> 
  242.    386DX/25               3.91   Ian McCloghrie <imcclogh@cs.ucsd.edu> 
  243.    386DX/25               3.95   Grant Edwards <grante@aquarius.rosemount.com> 
  244.    386DX/25 32cache       4.53   J.M.A. Lahtinen <jmalahti@klaava.Helsinki.FI> 
  245.    386DX/33               5.86   Tim Lacy <timla@microsoft.com> 
  246.    386DX/33 64cache       5.99   Lars Wirzenius <wirzeniu@kruuna.Helsinki.FI> 
  247.    386DX/33 Intel         5.99   Harri Pasanen <hpasanen@cs.hut.fi> 
  248.    386DX/33 no387         6.03   Joel B.Levin <levin@bbn.com> 
  249.    386DX/33 387           6.03   Peter Bechtold <peter@fns.greenie.muc.de> 
  250.    386DX/40               6.21   J.L. Brothers <brothers@halcyon.com>
  251.    386DX/33               6.46   Dennis Robinson <djrobins@uxa.cso.uiuc.edu>
  252.    386DX/33               6.5    Dean Nelson <deannelson@aol.com>
  253.    386DX/33 387 256cache  6.65   Wim van Dorst <baron@clifton.hobby.nl> 
  254.    386DX/40               6.99   Ken Wilcox <wilcox@math.psu.edu> 
  255.    386DX/40 AMD           7.10   Kerry Person <kperson@plains.NoDak.edu> 
  256.    386DX/40               7.10   D. Bikram Singh <a336dhal@cdf.toronto.edu> 
  257.    386DX/40 128cache      7.23   Julian Francis Day <jfd0@aber.ac.uk> 
  258.    386DX/40 bogoboosted   7.23   Pat St Jean <stjean@math.enmu.edu> 
  259.    386DX/40 AMD 128cache  7.23   R.Bergs <rabe@akela.informatik.rwth-aachen.de> 
  260.    386DX/40 slow DRAM     7.26   John Lockwood <lockwood@pan.vlsi.uiuc.eu>
  261.    386DX/40 128c          7.29   Karsten Friese <ftdkafr@ftd.ericsson.se>
  262.    386DX/40               7.29   E.C. Garrison <ericg@nickel.ucs.indiana.edu> 
  263.    386DX/40               7.29   Darin Cowan <cowan@rubicon.org> 
  264.    386DX/40               7.29   Bonne van Dijk <bonne@cs.utwente.nl> 
  265.    386DX/40               7.76   Todd Lindner <tlindner@panix.com>
  266.    386DX/40 AMD           7.76   Todd <tlinder@panix.com>
  267.    386DX/40 AMD 387 64c   7.91   <wires@gnu.ai.mit.edu> 
  268.    386DX/40               7.98   Frank Pilhofer <fp@informatik.uni-frankfurt.de>
  269.    386DX/40 64c           7.98   Dean Junk <dpjunk@mm.com>
  270.    386DX/40 AMD 32c       7.98   Tommy Olsen <tommyo@ifi.uio.no> 
  271.    386DX/40               7.98   Christian Nelson <cnelson@csugrad.cs.vt.edu> 
  272.    386DX/40               7.98   Alan Peckham <peckham@drei.enet.dec.com>
  273.    386DX/40               8.06   Richard Brown <brown@midget.towson.edu>
  274.    386DX/40               8.06   Bill G. Bohling <bs146@tali.uchsc.edu>
  275.    
  276. D. Oddly or faultly configured 486 systems
  277.  
  278.    System              BogoMips  Reporter
  279.    486DX/33 nocache       1.45   Mark Gray <vatavian@gvu1.gatech.edu> 
  280.    486SL/25 nocache       1.95   Paraskevas Evripidou <skevos@seas.smu.edu>
  281.    486DLC/40 nocache      2.45   S.Schendel <sschend@magnus.acs.ohio-state.edu> 
  282.    484DX4/100 wb-cache    3.10   Paul Close <pdc@sgi.com>
  283.    486DX4/100             3.17   Thomas Sudbrak <sudbrak@borneo.gmd.de>
  284.    486SLC2/50 Cyrix       3.30   Colin J. Wynne <cwynne@sage.wlu.edu>
  285.    486DX/33               3.61   Marten van de Laan <marten@cs.rug.nl> 
  286.    486DX/33 noturbo       3.61   Dimitris Evmorfopoulos <devmorfo@mtu.edu> 
  287.    486DX4/120             3.74   Brian Wheeler <bdwheele@indiana.edu>
  288.    486DX4/100 Cyrix 256c  4      Joel Kelso <joel@cs.murdoch.edu.au>
  289.    486DX/33 256c noturbo  4.25   Wouter Liefting <wlieftin@cs.vu.nl> 
  290.    486DX/33               4.66   Mark Gray <vatavian@gvu1.gatech.edu> 
  291.    486Rx2 Cyrix 25/50     4.85   <cosc19v2@menudo.uh.edu>  
  292.    486SX/33 noturbo       5.21   Scott D. Heavner <sdh@fishmonger.nouucp> 
  293.    486DX2/66 overdrive    5.37   Jeremy Orr <jeremy@careercenter.sfsu.edu>
  294.    486DX/33               5.66   Ryan Tucker <rtucker@ttgcitn.com>
  295.    486DX4/100             5.94   Howard Goldstein <hg@n2wx.ampr.org>
  296.    486DX4/100 AMD         5.94   Mr Pink <vince@dallas.demon.co.uk>
  297.    486DX4/100 notebook    6.55   Thomas <tom@dirac.physik.uni-konstanz.de>
  298.    486SLC Cyrix           7      Pieter Verhaeghe <pive@uia.ac.be> 
  299.    486SX/33               7.84   Paul Hedderly <prh6@unix.york.ac.uk>
  300.    486DLC/40              7.98   Wil Cromer <nwc2@Ra.MsState.Edu>
  301.    486DX4/100            11.11   NN <usenet@uxmail.ust.hk>
  302.    486DX4/100            11.3    Earl Gooch <egooch@mc.com> 
  303.    486/66 Cyrix          13.02   Mike Baptiste <baptiste@bnr.ca>
  304.    486SLC2/25            14.6    Vaughan R. Pratt <pratt@Sunburn.Stanford.EDU> 
  305.    486DX/33 turbo        19.98   C Vetter <cbvetter@informatik.th-darmstadt.de> 
  306.    486SX-S/33 UMD 0c     20.20   Hynek Med <xmedh02@manes.vse.cz>
  307.    486DX4/75             21.5    Theo Scott <rkwtgs@pukrs3.puk.ac.za>
  308.    486DX4/75             24.13   Sherman Hsieh <shieh@csua.berkeley.edu>
  309.    486DX2/58             26.3    Vassili Leonov <leonov@iedv7.acd.com>
  310.    486SX-S/40 UMD 0c     26.63   Hynek Med <xmedh02@manes.vse.cz>
  311.    486DX4/100 overclock  28.67   Theo Scott <rkwtgs@pukrs3.puk.ac.za>
  312.    486DX2/80             36      Mark Lee <mlee@heartlab.rri.uwo.ca>
  313.    486DX2/80             50.08   Mark Lee <mlee@heartlab.rri.uwo.ca>
  314.    486DX4/100            60      Sebastien Dedieu <dedieu@emi.u-bordeaux.fr>
  315.    486DX2/100 overclock  60.45   Tony D Shan <tdsst9+@pitt.edu>
  316.    
  317. E. Cyrix/IBM configured 486 systems 
  318.  
  319.    System             BogoMips   Reporter
  320.    486DLC/33              9.42   Dennis Robinson <djrobins@uxa.cso.uiuc.edu>
  321.    486DLC/33 387DX/40     9.47   Denis Solaro <drzob@vectrex.login.qc.ca> 
  322.    486DLC/33 Cyrix wb     9.5    Matthew Asplund <matt@xenon.cchem.berkely.edu>
  323.    486DLC/33 Cyrix 386   11.2    Alex Freed <freed@europa.orion.adobe.com> 
  324.    486DLC/40 256c        11.33   S.Schendel <sschend@magnus.acs.ohio-state.edu> 
  325.    486Dx/40 Cyrix        11.73   Malcolm Bremer <malcolm@strw.LeidenUniv.nl>
  326.    486DRx2/40 Cyrix      13.10   Christopher Lau <clau@acs.ucalgary.ca> 
  327.    486DX/33 Cyrix        13.21   M Haardt <u31b3hs@informatik.RWTH-Aachen.DE>
  328.    486DLC/40 bogoboost   13.21   Harry Pasanen <ps@tekla.fi> 
  329.    486DLC/40 487 Cyrix   13.21   Ian A. Verschuren <iav@po.CWRU.Edu> 
  330.    486DCL Cyrix          13.3    Tracer Bullet P.I. <ges@earth.baylor.edu> 
  331.    486DLC/40             13.31   Adam Frampton <frampton@access2.digex.net> 
  332.    486DLC/40             13.31   Rick Chow <crc@cacs.usl.edu> 
  333.    486SLC-S/33           13.51   Brad Pepers <pepersb@cuug.ab.ca>
  334.    486DLC/40 no Cxpatch  15.47   Sergei O. Naoumov <serge@envy.astro.unc.edy>
  335.    486DLC/40 TI 128c     15.97   Philip K. Roban <phil@seal.micro.umn.edu> 
  336.    486DRx2/40            15.99   Christopher Lau <lauc@fusion.cuc.ab.ca> 
  337.    486DX2/66 IBM no-FF   19      NN <coolefa@pmifeg.com>
  338.    486SLC2/66 IBM 64c    18.95   Sujat Jamil <sujat@shasta.ee.umn.edu> 
  339.    486SLC2/66 IBM 128c   18.95   Sujat Jamil <sujat@shasta.ee.umn.edu> 
  340.    486SLC2/66            19.02   Harry Mangalam <mangalam@uci.edu> 
  341.    486SLC/50             19.28   Sion Arrowsmith <sion@bast.demon.co.uk>
  342.    486BL3/75 IBM 256c    21.50   Ming S. Chan <ming.chan@canrem.com>
  343.    486DX2/66 Cyrix 128c  26.63   Derek Kwan <dkwan@zeus.UWaterloo.ca>
  344.    486DX2/66 Cyrix       26.63   Adrian Parker <adrian@willen.demon.co.uk>
  345.    486DX2-S/66 256c      26.63   Jean-Marc Wislez <JeanMarc.Wislez@rug.ac.be>
  346.    
  347. F. Normal 486 systems
  348.  
  349.    System             BogoMips   Reporter
  350.    486SX/20 DECpc         9.98   Thomas Pfau <pfau@cnj.digex.com> 
  351.    486SX/25              12.24   M. Buchenrieder <mibu@scrum.greenie.muc.de>  
  352.    486SX/25              12.3    Darren McKay <e9bh@unb.ca>
  353.    486SX/25              12.42   Mark R. Lindsey <mlindsey@nyx.cs.du.edu> 
  354.    486DX/25              12.5    Phillip Hardy <phillip@mserve.kiwi.gen.nz> 
  355.    486DX/33 256c         16.33   Eric Kemminan <ekemmina@pms709.ms.ford.com> 
  356.    486DX/33              16.35   Christopher L. Morrow <cm43@andrew.cmu.edu> 
  357.    486DX/33 64cache      16.44   H. Peter Anvin <hpa@nwu.edu> 
  358.    486DX/33 256c DIY     16.44   Wouter Liefting <wlieftin@cs.vu.nl> 
  359.    486DX/33 Intel 128c   16.44   Rafal Kustra <g1krakow@cdf.toronto.edu> 
  360.    486DX/33              16.5    Alex Freed <freed@europa.orion.adobe.com> 
  361.    486DX/33              16.6    Vaughan R. Pratt <pratt@Sunburn.Stanford.EDU> 
  362.    486DX/33 noturbo      16.61   C Vetter <cbvetter@informatik.th-darmstadt.de> 
  363.    486DX/33              16.61   Jeffrey L. Newbern <jnewbern@athena.mit.edu> 
  364.    486DX/33              16.61   Marco <guiseppe.de.marco@giuda.deis.unical.it>
  365.    486DX/33              16.61   M Heuler <heuler@informatik.uni-wuerzburg.de> 
  366.    486DX/33              16.61   Frank Lofaro <ftlofaro@unlv.edu> 
  367.    486DX/33              16.77   Stephan Boettcher <staphan@alzt.tau.ac.il>
  368.    486DX/33 256c         16.77   David Manchester <mustang@tartarus.uwa.edu.au>
  369.    486DX/40              19.8    Jose Calhariz <cal@minerva.inesc.pt> 
  370.    486DX/40              19.91   M Heuler <heuler@informatik.uni-wuerzburg.de> 
  371.    486DX/40              19.96   David A. Ranch <dranch@ecst.csuchico.edu>
  372.    486DX/40 AMD          19.97   M Haardt <u31b3hs@informatik.RWTH-Aachen.DE>
  373.    486DX/40 Intel        19.97   Paul van Spronsen <vspr@teppic.sun.ac.za> 
  374.    486DX/40              19.97   Ulf Tietz <ulf@rio70.bln.sni.de> 
  375.    486DX/40              19.97   <Eberhard\_Moenkeberg@p27.rollo.central.de> 
  376.    486DX/40              19.97   Zoltan Lajber <lajbi@lajli.gau.hu>
  377.    486DX/40              19.97   Wim van Dorst <baron@wiesje.hobby.nl>
  378.    486DX/40 AMD          20      Chuck Munro <chuckm@canada.hp.com>
  379.    486DX/50              24.48   Arnd Gehrmann <arnd@rea> 
  380.    486DX/50 AMD          24.85   Klaas Hemstra <hst@mh.nl> 
  381.    486DX/50 DTK          24.85   Randolph Christophers <randyc@lna.oz.au> 
  382.    486DX/50              24.85   Kevin Lentin <kevinl@bruce.cs.monash.edu.au> 
  383.    486DX2/50             24.85   Jason Matthew <jmatthew@kn.pacbell.com> 
  384.    486DX2/50             24.85   Gregory P. Smith <smithgr@cs.colorado.edu>
  385.    486DX/50 VLB          24.97   Tom Miller <tvtom@en.com>
  386.    486DX/50 Intel 256c   24.99   Mike <mike@emgee.demon.co.uk>
  387.    486DX/50              25      Robert Herzog <rherzog@rc1.vub.ac.be> 
  388.    486DX2/50             25      M. Abrahamsson <swmike@uplift.df.lth.se>
  389.    486DX2/50             25.0    Christian Holtje <choltje@ux1.cso.uiuc.edu> 
  390.    486DX2/50 DECpc       25.04   Thomas Pfau <pfau@cnj.digex.com> 
  391.    486DX2/50 Eisa        25.04   John Willing <willing@cimage.com>
  392.    486DX2/50 256c        25.04   Zhou Yanmo <zhou@gauss.math.usf.edu>
  393.    486DX2/50             25.04   Mats Wikholm <mwikholm@news.abo.fi>
  394.    486DX2/50             25.04   Jean C Delepine <delepine@linux.u-picardia.fr>
  395.    486DX/50              25.04   Jean C Delepine <delepine@linux.u-picardia.fr>
  396.    486DX/50              25.04   Kevin Burtch <kburtch@pts.mot.com>
  397.    486DX/50 notebook     25.04   Pierre Frenkiel <frenkiel@cdfap1.in2p3.fr>
  398.    486DX/50              25.10   M Heuler <heuler@informatik.uni-wuerzburg.edu> 
  399.    486DX2/50             25.4    Brian Kennedy <bkenned@hubcap.clemson.edu>
  400.    486DX2/66             32      Lee Sau Dan <h9210876@khuxa.hku.hk>
  401.    486DX2/66             32.9    Frederick <niles@axp745.gsfc.nasa.gov>
  402.    486DX2/66             33      Alec Muffett <alecm@uk-usenet.uk.sun.com> 
  403.    486DX2/66             33      NN <coolefa@pmifeg.com>
  404.    486DX2/66             33      Steve Tinney <sjt@enlil.museum.upenn.edu> 
  405.    486DX2/66 Intel       33      Chuck Munro <chuckm@canada.hp.com>
  406.    486DX2/66 VLB         33.0    Sebastien Dedieu <dedieu@emi.u-bordeaux.fr>
  407.    486DX2/66 AMD         33.05   G. Skinner <gskinner@gwsunix1.crystalball.com>
  408.    486DX2/66             33.20   Arnd Gehrmann <arnd@rea> 
  409.    486DX2/66 Intel/PCI   33.22   C. Menke <carsten.menke@post.uni-bielefeld.de>
  410.    486DX2/66             33.22   Brian Ricker <gt2327c@prism.gatech.edu> 
  411.    486DX2/66             33.22   Don Bennett < <don@engr.mun.ca>
  412.    486DX2/66             33.22   Warwick Ward-Cox <wwar@lostlink.alt.za>
  413.    486DX2/66             33.22   Chien-An Chen <giant@nwu.edu>
  414.    486DX2/66 Eisa/VL     33.22   Serge <sviznyuk@magnus.acs.ohio-state.edu>
  415.    486DX2/66 AMD         33.22   Wayne Robinson <wayner@renoir.cftnet.com>
  416.    486DX2/66 Intel       33.22   Jim Barber <yeul@marsh.cs.martin.edu.au>
  417.    486DX2/66             33.22   Tom Lowery <tlowery@mcs.kent.edu>
  418.    486DX2/66             33.3    Devon Tuck <devon@netcom.com> 
  419.    486DX2/66 256cache    33.4    H. Peter Anvin <hpa@nwu.edu> 
  420.    486DX2/66             33.5    Jongyoon Lee <mr2@netcom.com> 
  421.    486DX2/66             33.5    Petrovsky Alexey <gong@cs.msu.su>
  422.    486DX2/66             33.55   Gene McCulley <mcculley@greatwall.cctt.com>
  423.    486DX2/66             33.55   Eric Malkowski <malk@world.std.com>
  424.    486DX2/66 0c          33.55   Chris Petit <mystere@ix.net.com>
  425.    486DX2/66             33.55   <al-b@minster.york.ac.uk> 
  426.    486DX2/66             33.55   Jesper de Jong <jesper@cas.et.tudelft.nl>
  427.    486DX2/66             33.55   W Fink <werner.fink@physik.uni-stuttgart.de>
  428.    486DX2/66 ICL         33.55   Mathias Koerber <mathias@solomon.technet.sg> 
  429.    486DX2/66             33.55   Bill Pogue <gwp@dithots.dithots.org>
  430.    486DX2/66 256c        33.58   Theo Scott <rkwtgs@pukrs3.puk.ac.za>
  431.    486DX2/66             33.7    C Triantafillou <triant@pegasus.montcleair.edy>
  432.    486DX2/66 256c Intel  33.81   S Harris <harris@teaching.physics.ox.ac.uk> 
  433.    486DX2/66             33.9    Magnus Back <erambk@eraj.ericsson.se>
  434.    486DX2/66             34.06   Al Clark <aclark@netcom.com> 
  435.    486DX4/75             37.47   G Asmundarson <grettir@wordperfect.com>
  436.    486DX2/80 overcl/66   39.94   Mario L. Guttierez <mgutier@mentor.sdu.edu>
  437.    486DX2/80 AMD         39.94   Corey D Brenner <brenner@umr.edu>
  438.    486DX2/80             39.94   D t Haar <danny@caution.cistron.nl.mugnet.org> 
  439.    486DX2/80 overcl      39.94   Peter Suetterlin <ps@kis.uni-freiburg.de>
  440.    486DX2/80 AMD         39.94   JL Gomez <kitana!sysop@caprica.com>
  441.    486DX2/80 AMD         40      Rene Baart <baart@simplex.nl>
  442.    486DX2/80 AMD         40      Wolfgang Kalthoff <wo@rio70.bln.sni.de>
  443.    486DX2/80             40.0    Rick Brown <ccastrb@prism.gatech.edu> 
  444.    486DX2/80 AMD         40.14   Jon Lewis <jlewis@inorganic5.chem.ufl.edu>
  445.    486DX2/80 AMD         40.14   Richard S. Stone <rstone@edgp.com>
  446.    486DX2/80             40.15   Oleg <oleg@hpcms.co.il>
  447.    486DX2/80 AMD         40.18   Adri Verhoef <a3@a3.xs4all.nl>
  448.    486DX4/100 256c       49.71   Lutz Pressler <lutz.pressler@med-stat.GWDG.de>
  449.    486DX4/100            49.71   Brett Gersekowski <bgrerseko@powerup.com.au>
  450.    486DX2/100 AMD-over   40.14   Jon Lewis <jlewis@inorganic5.chem.ufl.edu>
  451.    486DX4/100            50.02   Peter Skov Knudsen <gogol@ask.diku.dk>
  452.    486DX4/100            50.02   Shadow Weaver <djamison@students.wisc.edu>
  453.    486DX4/100            50.05   fredk <fredk@shadow.net>
  454.    486DX4/100            50.06   Ronald Prague <ronp@fisnet.net>
  455.    486DX4/100            50.08   Steven A. Duchene <sduchene@cis.ysu.edu>
  456.    486DX4/100            50.08   Will <zxmvg07@hp12.zdv.uni-tuebingen.de>
  457.    486DX4/100            50.08   Piet de Bondt <bondt@dutiws.twi.tudelft.nl>
  458.    486DX4/100 laptop     50.08   Karl Kleinpaste <karl_kleinpaste@cs.cmu.edu>
  459.    486DX4/100 256c       50.08   Thomas Kanschik <y0000997@ws.rz.tu-bs.de>
  460.    486DX4/100            50.08   Linas Vepstas <linas@fc.net>
  461.    486DX4/100            50.08   Ed Daiga <daiga@engin.umich.edu>
  462.    486DX4/100 notebook   50.08   Gerry Quejada <fd863@cleveland.freenet.edu>
  463.    486DX4/100 AMD        50.08   B Schuller <schuller@ind136a.wi.leidenuniv.nl>
  464.    486DX4/100            50.08   J.L. Brothers <brothers@halcyon.com>
  465.    486DX4/100            50.08   Mark Lumsden <root@titan2.physics.mcmaster.ca>
  466.    486DX4/100            50.08   Ashar <ashar@netcom12.netcom.com>
  467.    486DX4/100            50.08   Jacob Waltz <waltz@pcjiw.lampf.lanl.gov>
  468.    486DX4/100            50.08   Tom Sinclair <sinner@cafe.net>
  469.    486DX2/100 AMD        50.08   G. Skinner <gskinner@gwsunix1.crystalball.com>
  470.    486DX4/100            50.08   Thomas J Fisher <twb5odt@nmia.com>
  471.    486DX4/100            50.08   Pascal Pensa <pensa@aurora.unice.fr>
  472.    486DX4/100            50.08   Julian Bradbury <julian@xabcs.demon.co.uk>
  473.    486DX4/100            50.51   Frederic Potter <frederic@swing.ibp.fr>
  474.    486DX4/100            50.66   Bill Stegers <bill_ste@zeelandnet.nl>
  475.    486DX4/120 256c       59.1    Kevin <kalichwa@oakland.edu>
  476.    486DX4/120            59.91   Will <zxmvg07@hp12.zdv.uni-tuebingen.de>
  477.    486DX4/120 overcl     60.45   Pascal Pensa <pensa@aurora.unice.fr>
  478.    486DX4/120            60.45   Neal Howard <neal@metronet.com>
  479.    486DX4/120            60.45   Jason Buchanan <jsb@digistar.com>
  480.    486DX4/120            60.45   Foersterling <dirk@informatik.uni-frankfurt.de>
  481.   
  482. G. Oddly or faultly configured Pentium systems
  483.  
  484.    Pentium/66             2.18   Bob Myers <root@shyguy.lonestar.org>
  485.    Pentium/90 NexGen     67.44   <root@wgw.mnsinc.com>
  486.    Pentium/90 NexGen     67.44   Robert Gehring <rag@cs.tu-berlin.de>
  487.    Pentium/100 NexGen    74.34   Cameron L. Spitzer <cls@truffala.sj.ca.us>
  488.    Pentium/100          100.19   Valient Gough <vgough@teton.mines.edu>
  489.    Pentium/100 Cyrix    100.16   NN <root@anxa04.cc.ic.ac.uk>
  490.    Pentium/100 Cyrix    100.47   C.Chan <chan@alfrothul.uchicago.edu>
  491.    Pentium/120 Cyrix    119.83   NN <root@anxa04.cc.ic.ac.uk>
  492.    Pentium/120 Cyrix    120.68   C.Chan <chan@alfrothul.uchicago.edu>
  493.  
  494. H. Normal Pentium systems
  495.  
  496.    System             BogoMips   Reporter
  497.    Pentium/60            23      Chien-An Chen <giant@nwu.edu>
  498.    Pentium/60            23.96   Joost Helberg <jhelberg@nlsun8.oracle.nl> 
  499.    Pentium/60            23.96   Ulf Tietz <ulf@rio70.bln.sni.de> 
  500.    Pentium/60 Gateway    23.96   Manoj Kasichainula <mvkasich@eos.ncsu.edu> 
  501.    Pentium/60            23.96   Pierre Frenkiel <frenkiel@cdfap1.in2p3.fr>
  502.    Pentium/60 NCR 3455   24      Mathias Koerber <mathias@solomon.technet.sg> 
  503.    Pentium/60            24      Joe Sloan <jjs@engr.ucr.edu>
  504.    Pentium/60            24.0    Mark H. Wood <mwood@indyvax.iupui.edu>
  505.    Pentium/60            24.13   Roland M. van Rijswijk <rijswijk@cs.utwente.nl>
  506.    Pentium/66            25      Chuck Munro <chuckm@canada.hp.com>
  507.    Pentium/66            26.63   Jason M. Naughton <jnaughto@ee.ryerson.ca>
  508.    Pentium/66            26.84   Kelly Carmichael <kcarmich@cln.etc.bc.ca>
  509.    Pentium/75 256c       29.5    Chris Dodd <cdodd@super.win.or.jp>
  510.    Pentium/75            29.95   Steve Martin <smartin@mrg.uswest.com>
  511.    Pentium/75            30.22   Andrew Buckby <c4ab1@dmu.ac.uk>
  512.    Pentium/75            30.22   Stuart Nuttall <u9230106@sys.uea.ac.uk>
  513.    Pentium/90 notebook   32.73   Rich Neves <neves@cs.colorado.edu>
  514.    Pentium/90 zappa 256c 35.6    Sebastien Dedieu <dedieu@emi.u-bordeaux.fr>
  515.    Pentium/90            35.88   Joe Anderson <CPJJA@ttacs3.ttu.edu>
  516.    Pentium/90            35.88   Warwick Allison <warwick@cs.uq.oz.au>
  517.    Pentium/90            36      Joe Sloan <jjs@engr.ucr.edu>
  518.    Pentium/90            36      Larry Auton <lda@nfa.research.att.com>
  519.    Pentium/90            36      Richard Knipe <knipe@lobby.ti.com>
  520.    Pentium/90            36.0    Werner Almesberger <almesber@lrc.epfl.ch>
  521.    Pentium/90            36.06   Rob J. Nauta <rob@iaehv.nl>
  522.    Pentium/90 Zeos       36.08   Chris Laurel <claurel@mr.net>
  523.    Pentium/90            36.08   Ronald Prague <ronp@fishnet.net>
  524.    Pentium/90            36.08   Pak Yin Tam "Fred" <ptam@eesun1.tamu.edu>
  525.    Pentium/90            36.08   Jason Heiss <jheiss@cco.caltech.edu>
  526.    Pentium/90            36.08   Tim Krantz <tek@dsinc.com>
  527.    Pentium/90 Gateway    36.08   Pete Stewart <stewart@bae.bellcore.com>
  528.    Pentium/90            36.08   Tom Manos <tmanos@infi.net>
  529.    Pentium/90            36.08   Richard Mundell <R.Mundell@uea.ac.uk>
  530.    Pentium/90            36.08   NN <usenet@uxmail.ust.hk>
  531.    Pentium/90            36.08   Yavuz Batmaz <yavuzb@knidos.cc.metu.edu.tr>
  532.    Pentium/90            36.08   Alan Skelley <askelley@gpu.srv.ualberta.ca>
  533.    Pentium/90            36.08   Ralph Sims <ralphs@locus.halcyon.com>
  534.    Pentium/90            36.08   Julian Bradbury <julian@xabcs.demon.co.uk>
  535.    Pentium/90            36.08   Dan Langrill <langrlld@mussel.cig.mot.com>
  536.    Pentium/90            36.08   Ravi Krishna Swamy <rkswamy@eos.ncsu.edu>
  537.    Pentium/90            36.08   J.L. Brothers <brothers@halcyon.com>
  538.    Pentium/90 Micronics  36.09   Andrew Brown <andrewbrown@acm.org>
  539.    Pentium/90            36.27   Giao H. Phan <giao@concrete.resnet.upenn.edu>
  540.    Pentium/90 Plato      36.4    Joe Valenzuela <smarm@ibm.met>
  541.    Pentium/90            36.5    Mike Kelleher <mikejk@umfacad.maine.edu>
  542.    Pentium/90            36.73   Jason Crawford <jasonc1@gramercy.ios.com>
  543.    Pentium/90            36.9    Ted Gaunt <tgaunt@pms701.pms.ford.com>
  544.    Pentium/100           39.93   Tom Miller <tvtom@en.com>
  545.    Pentium/100           39.94   KAZ Vorpal <kaz@upx.net>
  546.    Pentium/100 overcl    39.94   Donar G.E. Alofs <donar@cs.vu.nl>
  547.    Pentium/100           39.94   Larry Snyder <larry@trauma.iag.net>
  548.    Pentium/100           39.94   John Crawford <link@spu.edu>
  549.    Pentium/100           39.94   Jered <jered@mit.edu>
  550.    Pentium/100 overcl    39.94   Ian <irs2@tweedledum.amp.york.ac.uk>
  551.    Pentium/100           39.94   M Skjelland <morten.skjelland@pvv.unit.no>
  552.    Pentium/100           40.18   David Baldwin <davidb@exis.net>
  553.    Pentium/100           40.18   <habibie@catevr.fiu.edu>
  554.    Pentium/120           47.93   Umberto d'Ortona <umbertogrenet.fr>
  555.    Pentium/120           47.93   Jon Trowbridge <trow@mcs.com>
  556.    Pentium/120           47.98   Craig Bates <cbates@psu.edu>
  557.    Pentium/120           48.00   Michael Wazenski <mwazenski@dsrnet.com>
  558.    Pentium/120           48.27   Peter Walsh <pwalsh@rain.org>
  559.    Pentium/133           53.26   Charny Peete Mitchell <cpmiche@eos.ncsu.edu>
  560.    Pentium/133 256c      53.26   David Wuertele <dave@gctech.com>
  561.    Dual Pentium/90 SMP   71.98   Daniel Luhde-Thompson <dl10010@cam.ac.uk>
  562.    Dual Pentium/90 SMP   72.08   Alan Cox <alan@cymru.net>
  563.    Pentium Pro          132.88   John D. Sundberg <jdsundberg@mmm.com>
  564.   
  565. I. Normal Alpha systems 
  566.  
  567.    System                BogoMips  Reporter
  568.    Alpha 21064/150 512c    148.37  Linus Torvalds <torvalds@cc.helsinki.fi>
  569.    Alpha 21064/150         149.49  J.L. Brothers <brothers@halcyon.com>
  570.    Alpha 21066/166         164.59  David Mosberger-Tang <davidm@cs.arizona.edu>
  571.    Alpha 21066/166         165     Gareth Bult <gareth@ftech.net>
  572.    Alpha 21066/166 256c    165.04  Craig Ruff <cruff@ncar.ucar.edu>
  573.    Alpha 21066/200 overcl  196.9   Danny ter Haar <danny@cistron.nl>
  574.    Alpha 21066A/233        230.67  T. Bogendoerfer <tsbogend@bigbug.franken.de>
  575.    Alpha 21066A/233        230.76  Mikael Nykvist <viper@ludd.luth.se>
  576.    Alpha 21064A/275 2048c  272     Linus Torvalds <torvalds@cc.helsinki.fi>
  577.    Alpha 21064A/275        272     Stephen Gaudet <sjg@tiac.net>
  578.    Alpha 21064A/275        272.63  Jay Estabrook <jestabro@amt.tay1.dec.com>
  579.    Alpha 21064A/275        273.37  David Mosberger-Tang <davidm@cs.arizona.edu>
  580.    Alpha 21064A/275        274.11  Kevin Jacobs <jacobs@eek.cwru.edu>
  581.    Alpha 21064A/300 overcl 298     Jay Estabrook <jestabro@amt.tay1.dec.com>
  582.    Alpha 21064A/300 overcl 298     Stephen Gaudet <sjg@tiac.net>
  583.  
  584. J. Normal Motorola systems 
  585.  
  586.    System                BogoMips  Reporter
  587.    68030/16 Atari Falcon     3.95  J.L. Brothers <brothers@halcyon.com>
  588.    68030/16 Atari Falcon     3.98  <Roman.Hodek@informatik.uni-erlangen.de>
  589.    68030/20 nocache          4.92  Chris Nadigh <chrnadig@iiic.ethz.ch>
  590.    68030/25 Amiga 3000       6.21  Hamish Macdonald <hamish@bnr.ca> 
  591.    68030/25 Amiga 3000       6.21  J.L. Brothers <brothers@halcyon.com>
  592.    68030/32 Atari MegaST     7.98  E.J. van den Bussche <busscheh@ksepl.nl>
  593.    68030/33 Atari TT         7.98  <Roman.Hodek@informatik.uni-erlangen.de>
  594.    68030/48 32c             11.89  Martin Rogge <Martin_Rogge@ki.maus.de>
  595.    68030/50 Atari           12     <Roman.Hodek@informatik.uni-erlangen.de>
  596.    68030/50 32c             12.42  Michael Plonus <michi@pluto.ping.de>
  597.    68040/24 Amiga 4000/40   16.6   Hamish Macdonald <hamish@bnr.ca> 
  598.    68040/24 Amiga 4000/20   16.60  J.L. Brothers <brothers@halcyon.com>
  599.    68040/25 Amiga 4000/040  16.61  <Geert.Uytterhoeven@cs.ku-leuven.ac.be>
  600.    68040/25 Amiga 4000      16.61  Lawrence <lawrenc@nextwork.rose-hulmand.edu>
  601.    68040/66 Medusa T60      22     <Roman.Hodek@informatik.uni-erlangen.de>
  602.  
  603. K. Other Systems: Sparc, PowerPC, Mips, Intel 8088
  604.  
  605.    System                BogoMips  Reporter
  606.    Intel 8088/4.77           0.02  Tim Van der Linden <timvdl@innet.be>
  607.    Intel 8088/10             0.05  Tim Van der Linden <timvdl@innet.be>
  608.    Sparc Sun4c              17.94  J.L. Brothers <brothers@halcyon.com>
  609.    PowerPC 601/60 Mac6100   45.24  J.L. Brothers <brothers@halcyon.com>
  610.    PowerPC 601/66 Mac       51.62  Fred Klein <klein@des3.u-strasbg.fr>
  611.    Mips R4600/134 Tyne      44.97  Ralf Baechle <ralf@waldorf-gmbh.de>
  612.    Mips R4000/100           48.30  J.L. Brothers <brothers@halcyon.com>
  613.    Mips R4000/100 Magnum    50.03  Andreas Busse <andy@soft-n-hard.de>
  614.    Mips R4400/134 Acer Pica 67.10  Andreas Busse <andy@soft-n-hard.de>
  615.    
  616. L. Non-Linux systems (reference only)
  617.  
  618.    System                      OS      BogoMips Reporter
  619.    68020/20 Sun 3              SUNOS      2.0   <korpela@ssl.berkeley.edu>
  620.    68020/25 Sun 3-180          SUNOS      4.0   <korpela@ssl.berkeley.edu>
  621.    Sparc Sun 3-60              SUNOS      4.00  <tranter@software.mitel.com>
  622.    Sparc Sun 3-80              SUNOS      4.00  <tranter@software.mitel.com>
  623.    68040/33 HP9000-280         HP-UX     14     <niles@axp745.gsfc.nasa.gov>
  624.    Sparc Sun 4-280             SUNOS     16.0   <korpela@ssl.berkeley.edu>
  625.    Sparc Sun IPC/40            Solaris   16.00  <gong@cs.msu.su>
  626.    68040 NextStep              (?)       16.26  <petergun@coffeehaus.com>
  627.    Sparc Sun Sparcstation1     SUNOS     18.00  <tranter@software.mitel.com>
  628.    Sparc Sun Sparcstation1+    SUNOS     19     <swmike@uplift.df.lth.se>
  629.    Sparc Sun Sparcstation1+    SUNOS     24.00  <tranter@software.mitel.com>
  630.    Sparc Sun IPC               SUNOS     24.00  <tranter@software.mitel.com>
  631.    Sparc Sun Sparcstation2     SUNOS     26.00  <gong@cs.msu.su>
  632.    SparcClassic/50             Solaris   32.00  <gong@cs.msu.su>
  633.    Sparc Sun ELC               SUNOS     32.00  <tranter@software.mitel.com>
  634.    Sparc Sun SS10              SUNOS     34.00  <tranter@software.mitel.com>
  635.    Sparc Sun Sparcstation2     SUNOS     38.0   <korpela@ssl.berkeley.edu>
  636.    Mips R4000/100 Indy         (?)       48.00  <p.verwer@organon.akzonobel.nl>
  637.    Mips R4000/100 SGI IndySC   Irix      48.00  <lziegler@csbsju.edu>
  638.    Sparc Sun Sparcstation10d   SUNOS     54.0   <korpela@ssl.berkeley.edu>
  639.    Sparc SS1000 2CPU           SUNOS     58.00  <gong@cs.msu.su>
  640.    Alpha 21064/133 Decstation  OSF1      64     <niles@axp745.gsfc.nasa.gov>
  641.    Sparc Sun SS5               SUNOS     68.00  <tranter@software.mitel.com>
  642.    Sparc Sun SS20              SUNOS     72.00  <tranter@software.mitel.com>
  643.    Mips R4400/150 Challenge    (?)       74.00  <p.verwer@organon.akzonobel.nl>
  644.    Mips R4400/150 Indigo2Extr  (?)       74.00  <p.verwer@organon.akzonobel.nl>
  645.    Alpha                       OSF1      92.00  <petergun@coffeehaus.com>
  646.    Mips R4400/200 Indigo2Extr  (?)       98.00  <p.verwer@organon.akzonobel.nl>
  647.    HP-PA 9000-735/99           HP-UX     98.00  <lankhors@cs.rug.nl>
  648.    Sparc Sun SS5               SUNOS    110     <swmike@uplift.df.lth.se>
  649.    Alpha 21064A/233            OSF1     114     <niles@axp745.gsfc.nasa.gov>
  650.    HP-PA 700/125               HP-UX    122     <niles@axp745.gsfc.nasa.gov>
  651.    HP-PA 9000-735/125          HP-UX    122.00  <lankhors@cs.rug.nl>
  652.    Mips R4600/133 SGI Indy     Irix     132     <lziegler@csbsju.edu>
  653.    Alpha                       OSF1     180.0   <mauger@ensinfo.univ-nantes.fr>
  654.    Cray J90 Y-MP/100 16CPU     Unicos   912.00  <lankhors@cs.rug.nl>
  655.  
  656.  
  657. Isolde is rapidly growing to be a full toddler: "drawing," riding
  658. tricycles and dancing are her greatest hobbies. Walking about in
  659. her winter coat and a shawl she looks like a Michelin man, but
  660. she enjoys the cold and the ice, apart from the running nose.
  661. Look in Linux Journal for a cute picture of her.
  662.  
  663. Met vriendelijke groeten, Wim van Dorst.
  664. --------------------------------------------------------------------
  665. Blue Baron = Wim van Dorst, Voice (+31) 33 4676365, (+31) 35 5242319
  666. (-:      baron@clifton.hobby.nl       WvD@Chem.AkzoNobel.nl      :-)
  667. --------------------------------------------------------------------
  668.  
  669.