home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / programm / 2083 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  1.7 KB

  1. Path: sparky!uunet!iWarp.intel.com|inews!pinkas
  2. From: pinkas@caraway.intel.com (Israel Pinkas)
  3. Newsgroups: comp.programming
  4. Subject: Re: Does "400% faster" make sense? (Was: Re: finding 1st one in integer)
  5. Message-ID: <PINKAS.92Jul23100825@caraway.intel.com>
  6. Date: 23 Jul 92 17:08:25 GMT
  7. References: <1992Jul22.120735@is.morgan.com> <LOWRY.92Jul22154231@rotor.watson.ibm.com>
  8.     <1992Jul22.172337@is.morgan.com>
  9. Sender: news@inews.intel.com
  10. Organization: Software Technologies, INTeL Corporation, Santa Clara, CA
  11. Lines: 35
  12. In-reply-to: berlin@is.morgan.com's message of 22 Jul 92 21:23:37 GMT
  13.  
  14. berlin@is.morgan.com (Alexander Berlin) writes:
  15.  
  16.    If some job takes me 100 seconds and you can do it in 25 seconds:
  17.    I am 300% slower then you are.              (100-25)/25*100 
  18.    You are 75% faster than I am(not 300)       (100-25)/100*100
  19.    Your performance is 400% of mine.           (1/25)/(1/100)*100
  20.    My performance is 25% of yours.             (1/100)/(1/25)*100
  21.  
  22.  
  23.  
  24. Guess again Alexander.  When calculating delta%, divide by the original
  25. number.  Thus:
  26.  
  27. If some job takes me 100 seconds and you can do it in 25 seconds:
  28.     I am 75% slower then you are.    (25-100)/100*100%   = -75%
  29.     You are 300% faster than I am.    (100-25)/25*100%    = 300%
  30.     Your performance is 400% of mine.    (1/25)/(1/100)*100% = 400%
  31.     My performance is 25% of yours.    (1/100)/(1/25)*100% =  25%
  32.  
  33.  
  34. To compare:
  35.  
  36. If I can dig a hole in 60 seconds, and you can dig the hole in 30 seconds,
  37.  
  38. you are twice as fast as me:    60/30
  39. I am half as slow as you:    30/60
  40.  
  41.  
  42. For more info, see a good high school algebra book.
  43.  
  44. -Israel
  45. --
  46. Disclaimer: The above are my personal opinions, and in no way represent
  47. the opinions of Intel Corporation.  In no way should the above be taken
  48. to be a statement of Intel.
  49.