Slashdot Mirror


Seymour Cray and the Development of Supercomputers (linuxvoice.com)

An anonymous reader writes: Linux Voice has a nice retrospective on the development of the Cray supercomputer. Quoting: "Firstly, within the CPU, there were multiple functional units (execution units forming discrete parts of the CPU) which could operate in parallel; so it could begin the next instruction while still computing the current one, as long as the current one wasn't required by the next. It also had an instruction cache of sorts to reduce the time the CPU spent waiting for the next instruction fetch result. Secondly, the CPU itself contained 10 parallel functional units (parallel processors, or PPs), so it could operate on ten different instructions simultaneously. This was unique for the time." They also discuss modern efforts to emulate the old Crays: "...what Chris wanted was real Cray-1 software: specifically, COS. Turns out, no one has it. He managed to track down a couple of disk packs (vast 10lb ones), but then had to get something to read them in the end he used an impressive home-brew robot solution to map the information, but that still left deciphering it. A Norwegian coder, Yngve Ådlandsvik, managed to play with the data set enough to figure out the data format and other bits and pieces, and wrote a data recovery script."

18 of 54 comments (clear)

  1. From the pic in TFA by OzPeter · · Score: 2

    Seymour Cray in that suit would make for a good Dr Who

    --
    I am Slashdot. Are you Slashdot as well?
  2. Re:Geez, read a book by Maury+Markowitz · · Score: 2

    And now I see the error is in the quote above, because the original article doesn't screw it up.

  3. Re:Geez, read a book by _Shorty-dammit · · Score: 2

    Geez, read the article. ;) They're talking about the 6600 there.

  4. Re:Geez, read a book by Desler · · Score: 2

    Yeah, the context of the quote is severely butchered. That's something an *editor* would normally fix.

  5. Re:Dumbing Down by drinkypoo · · Score: 2

    "it could begin the next instruction while still computing the current one, as long as the current one wasn't required by the next "
    Doesn't this go without saying?

    No. These days we just go forth and compute and if we predicted flow incorrectly, we throw away the result and compute again

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  6. Re:Geez, read a book by TemporalBeing · · Score: 2

    Yeah, the context of the quote is severely butchered. That's something an *editor* would normally fix.

    Editors are too expensive...so we get crap insted of reel content, but that's probably how Dice gets their articals through so offten

    **end purposeful bad writing editors would normally catch**

    --
    Truth is like the sun. You can shut it out for a time, but it ain't goin' away. - Elvis Presley (source: imdb.com)
  7. Re:Dumbing Down by adri · · Score: 4, Interesting

    No; CPUs didn't /have/ to do that. MIPS toyed with both models for a while - initially MIPS was like "we don't interlock pipeline stages, so programmers need to be smart." Then the R4000 came out that attempted to implement that, and it was .. complicated. So it got reverted.

    Not all CPUs are like Intel CPUs (which aren't all like earlier intel cpus, which aren't all like 8080s, etc..)

  8. Re:Geez, read a book by Creepy · · Score: 5, Interesting

    I think the first is what we would call the pipeline today and the second means parallel execution units. Using the word "functional units" for both is a bit confusing. Early RISC pipelines had 5 stages that are described in that link (and that brings back some memories - I remember studying it in college).

    Funny thing is, I actually read the article to learn about what my first girlfriend's dad did - he was an engineer that worked on that thing (and yeah, she was a total nerd girl). I'm still Facebook friends with her, should point her to the article.

  9. "Peripheral Processors", not "Parallel Processors" by jeffb+(2.718) · · Score: 2

    This is an error from the original article, not from the summary. If the author didn't even bother to look up what "PP" actually stood for, I don't have a lot of confidence in the rest of the article's scholarship. Heck, ONE CLICK TO WIKIPEDIA would have given her the proper definition.

  10. Re:So I always wondered by Anonymous Coward · · Score: 3, Informative

    Nowhere near that. From Cray's (admittedly only distantly related to the original Cray...) web site, http://www.cray.com/company/history

              The first Cray®-1 system was installed at Los Alamos National Laboratory in 1976
              and cost $8.8 million. It boasted a world-record speed of 160 million floating-point
              operations per second (160 megaflops) and an 8 MB (1 million word) main memory.

    If I remember right, the first that got around 1 Gflop was the Cray-2. Even the X-MP only did around 2/3 of a Gflop.

  11. Re:So I always wondered by Anonymous Coward · · Score: 3, Informative

    The largest X-MP had 4 CPUs, each with a floating-point adder and multiplier and a clock speed of ~105MHz. So, the peak performance of these machines was 840MFlops. Achieving and sustaining that though was tricky and was only possible in large vector operations.

    The impressive part of the architecture was its memory: at peak, the memory subsystem could complete 16 memory references per clock cycle (each delivering 64 bits of data), so the peak memory bandwidth was 13GBps, or roughly what a 64-bit DDR3 solution offers.

  12. Re:Clarify... by Tablizer · · Score: 2

    difference between Gene Amdahl and Seymour Cray?

    Amdahl worked mostly on IBM mainframe clones, and focused on business applications. More emphasis on reliability, and processing currency, integers (counts), and business logic. Example: payroll for a big corporation.

    Cray's machines were mostly used for scientific, engineering, research, and military applications. More emphasis on floating point number processing. Example: climate simulations.

  13. Re:"Peripheral Processors", not "Parallel Processo by superid · · Score: 2

    I came here to say this. In the early 80's I worked on Control Data Cyber 174C mainframes (we had two). Liquid cooled, about maybe 20 feet long with hinged chassis that swung out like doors (maybe 40" by 6' and about 10" thick) . One chassis was a CPU, two were memory I think, and one was for 10+ Peripheral Processor Units (PPUs) which did 100% of the I/O. A whopping 40 MHz! and a 208 bit memory bus with SECDED.

  14. Re:"Peripheral Processors", not "Parallel Processo by jeffb+(2.718) · · Score: 2

    I interned (sort of) at Babcock and Wilcox's computing center around 1980. We had several CDC systems, including a 76 ("7600"), which was built in a horseshoe arrangement much like the Cray-1. (The field engineers used its interior as a storage closet.) Me, I was just hauling tapes, card decks and printouts, but I did get to learn a bit about the machines, and a lot more once I got into comp architecture classes in college. It was a great place for a geek.

  15. Re:Dumbing Down by elwinc · · Score: 5, Informative

    "it could begin the next instruction while still computing the current one, as long as the current one wasn't required by the next " Doesn't this go without saying?

    Back in the day, pipelining - issuing, say, a new multiply instruction every clock, even though several earlier multiplies were still working their way thru the pipeline - was too expensive for most architectures. An instruction might take multiple clock cycles to execute, but in most architectures the multi-clock instruction would tie up the functional unit until the computation was done - you might be able to issue a new multiply every 10 clocks or something. Pipelining takes more gates and more design because you don't want one slow stage to determine the clock rate of the whole design.

    Which leads us to the early RISC computers, I can recall an early Sun SPARC architecture that lacked a hardware integer multiply instruction. The idea at the time was every instruction should take one clock, and any instruction that demanded too long a clock should be unrolled in software. So this version of SPARC used shifts and adds to do a multiply. At the time, that was a pure RISC design. One of the key insights in RISC, still useful today, is to separate main memory access from other computations.

    The CPU design course I took in the late 80's said Seymour Cray invented that idea of separating loads and stores from computation, because even then, even with static RAM as main memory, accessing main memory was slower than accessing registers. So by separating loading from RAM into registers and storing from registers into RAM, the compiler could pre-schedule loads and stores such that they would not stall functional units. Cray also invented pipelining, another key feature in most modern CPUs (I'm not sure when ARM adopted pipelining, but i'm pretty sure it's in some ARM architectures have it now). Of course Cray had vector registers and the consequent vector SIMD hardware.

    I don't think Cray invented out of order execution, but I don't think he needed it; in Cray architectures, it would be the compiler's job to order instructions to prevent stalls. In CISC architectures, OOO is mostly a trick for preventing stalls without the compiler needing to worry about it (also, with many models and versions of the Intel instruction architecture out there, it would be painful to have to compile differently for each and every model). So, for example, the load part of an instruction could be scheduled early enough that the data would be in a register by the time the rest of the instruction needed it.

    Anyway, the upshot is modern CPU designs have a bigger debt to Cray than to any other single design.

    --
    --- Often in error; never in doubt!
  16. Re:"Peripheral Processors", not "Parallel Processo by dbc · · Score: 2

    Right on. I worked at Control Data, as a CPU logic designer. The PP's were peripheral processors. The article is full of so much egregiously incorrect tripe I won't even bother to type up a correction. My advice to everyone is to completely ignore the article unless you want your head stuffed full of misinformation.

  17. Re:Dumbing Down by serviscope_minor · · Score: 3, Informative

    Cray also invented pipelining

    That honour goes to Konrad Zuse some 25 years earlier. His purely mechanical Z1 calculator machine (not Turing complete) had a short pipeline.

    --
    SJW n. One who posts facts.
  18. Re:Geez, read a book by gnasher719 · · Score: 2

    What's a bit confusing is that the article is about Seymour Cray, the creator of super computers, but not about Cray computers. What is described is actually the Control Data computers, starting with the 6600 (I had the joy to learn with a 175).

    Yes, the PPs are _not_ "parallel processors", they are "peripheral processors". The 175 had 12 "peripheral processors" with quite limited capabilities and running at 12 MHz instead of the 40 of the main computer, and exclusively responsible ofr handling I/O.

    The "cache" on this machine was a 12 word times 60 bit instruction cache. You _had_ to design loops to fit into that cache, so they would run 2-3 times faster. No time wasted reading instructions from main memory.