Slashdot Mirror


The CPU Redefined: AMD Torrenze and Intel CSI

janp writes "In the near future the Central Processing Unit (CPU) will not be as central anymore. AMD has announced the Torrenza platform that revives the concept of co-processors. Intel is also taking steps in this direction with the announcement of the CSI. With these technologies in the future we can put special chips (GPU's, APU's, etc. etc.) directly on the motherboard in a special socket. Hardware.Info has published a clear introduction to AMD Torrenza and Intel CSI and sneak peaks into the future of processors."

6 of 200 comments (clear)

  1. huh? by mastershake_phd · · Score: 3, Insightful

    Werent the first co-processors FPUs. Arent they now integrated into the CPU? By having all these thing sin one chip they will have much lower latency with communicating between themselves. I think all in one multi-core chips is the future if you ask me.

    1. Re:huh? by *weasel · · Score: 4, Insightful

      However, there are limits on how big the die can be and remain feasible for high volume manufacturing.

      The limits aren't such a big deal.
      Quad-core processors are already rolling off the lines and user demand for them doesn't really exist.
      They could easily throw together a 2xCPU/1xGPU/1xDSP configuration at similar complexity.
      And the market would actually care about that chip.
      --
      // "Can't clowns and pirates just -try- to get along?"
    2. Re:huh? by Fordiman · · Score: 5, Insightful

      But think. There is definitely money in non-upgradable computers - especially in the office desktop market. The cheaper the all-in-one solution, the more often the customer will upgrade the whole shebang.

      Example: in my workplace, we have nice-ass Dells which do almost nothing and store all their data on a massive SAN. They're 2.6GHz beasts with a gig of ram, a 160G HD, and a SWEET ATI vid card each. Now, while I personally make use of it all proper-like, most people here could get along with a 1GHZ/512MRAM/16GHD/Onboard video system.

      I think Intel/AMD stands to make a lot of money if they were to build an all-in-one-chip computer, ie: CPU, RAM, Video, Sound, Network, and a generous flash drive on a single chip.

      --
      110100 1101000 1101000 1100110 0 1101111 1101000 1100011 1
    3. Re: huh? by Dolda2000 · · Score: 5, Insightful

      Still, you are right, all-in-one cpus are the future, we're just not quite there yet.

      Actually, no thank you. I've had enough problems ever since they started to integrate more and more peripherals on the motherboard. I'd be troubled if I'd have to choose between either a VMX-less, DDR3-capable chip with the GPU I wanted, a VMX- and DDR3-capable chip with a bad GPU, a VMX-capable but DDR2 chip with a good GPU, or a chip that has all three but an IO-APIC that isn't supported by Linux, or a chip that I could actually use but costs $500.


      Instead of gaining those last 10% of performance, I'd prefer a modular architecture, thank you. Whatever is so terribly wrong with PCI-Express anyway?

    4. Re:huh? by Archangel+Michael · · Score: 3, Insightful

      "most people here could get along with a 1GHZ/512MRAM/16GHD/Onboard video system."

      Haven't tried to run Vista yet ... have you.

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
  2. Really just two types of processors by J.R.+Random · · Score: 3, Insightful

    There are basically two models of parallelism that are used in practice. One is the Multiple Instruction Multiple Data model, in which you write threaded code with mutexes and and the like for synchronization. The other is Single Instruction Multiple Data, in which you write code that operates on vectors of data in parallel, doing pretty much the same thing on each piece of data. (There are other models of parallelism, like dataflow machines, but they don't have much traction in real life.) Multicore CPUs are MIMD machines, GPUs are SIMD machines. All those other processors -- physics processors, video processors, etc. are just SIMD machines too, which is why Nvidia and ATI could announce that their processors will do physics too, and why folding@home works so well on the new ATI cards. So I suspect that in real life there will be just two types of processors. At least I hope that is the case, because it will be a real mess if application A requires processors X, Y, and Z while application B requires processors X, Q, and T.