Slashdot Mirror


User: akuma(x86)

akuma(x86)'s activity in the archive.

Stories
0
Comments
407
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 407

  1. Re:More info on this - links & pictures on Intel Promises A Cool Billion (Transistors) · · Score: 1

    Anandtech has an overview of this technology here.

  2. Re:Huh? 10-stage pipeline? on PPC G5 On The Way -- And Fast · · Score: 1

    That's because Intel went from 12 in the PIII to 20 in the P4 (a 66% increase). At the same time, they went from 1GHz to 1.4GHz (a 40% increase.) So Intel increases the pipeline by 66% and only increases the MHz by 40% - that's why people laughed. Motorola, if they pull it off, will lengthen the pipeline by 43% and the MHz by 100%. See the difference?

    Again...the G5 is in a different process than the G4. They're going to get a lot of frequency boost from the process alone.

  3. Re:Huh? 10-stage pipeline? on PPC G5 On The Way -- And Fast · · Score: 1

    Don't forget that the G5 is in a different process. Shrinking the G4 plus putting it on SOI will get you a good frequency boost without any repipelining.

    But wait...longer pipelines are bad right? What about the MHz myth? Why didn't they just increase IPC? :)

  4. Re:No, this is called SMART... on AMD To Hide MHz Rating From Consumers · · Score: 1

    CPI isn't the whole story either.

    Performance is measured in "seconds" which is a function of frequency, CPI and the number of instructions executed.

    Performance = (CPI * num_instructions)/freq

    The pentium 4 has a lower CPI because it was designed that way. Intel believes that it can scale freq up much faster than it can scale CPI down thus increasing overall performance in the long run. Things like compilers can also help with not only the CPI component but the num_instructions component.

  5. Re:And people need 2 ghz? on Pentium IV Hits 2 Ghz · · Score: 1
    Seriously, who *needs* 2ghz?

    Yes, of course and 640K should be enough for everybody...

  6. Re:MHz to MHZ on Sun's Zippy New Chips · · Score: 1

    MHz to MHz is silly. What you want to compare is TIME. How long does it take to finish a task given the hardware available TODAY and for what price. SPEC scores are based on time. Intel has the fastest single processor chip available today for running SPEC like applications. Now when you compare SPECrate, did you forget to look at the DELL systems with 2-way P4 Xeons? Or how about the 4-way and 8-way PIII Dells? Or...the 32-way!! Unisys PIII systems? If you care about SPECrate, then Intel has some extremely competitive offerings. Considering that Sun is supposed have vastly superior system/memory design, I think that it is telling that a 2-way Intel or AMD system is competitive with a 2-way sun system that costs a lot more.

  7. Re:From what I've seen ... on Former Dot-Com Workers Crowd Homeless Shelters · · Score: 1

    void reverse_string_in_place(char *str) { int length = strlen(str); for (int ii = 0; ii (length/2); ++ii) { // Swap str[ii] with str[length - 1 - ii] str[ii] ^= str[length - 1 - ii]; str[length - 1 - ii] ^= str[ii]; str[ii] ^= str[length - 1 - ii]; } }