Slashdot Mirror


Intel Details Nehalem CPU and Larrabee GPU

Vigile writes "Intel previewed the information set to be released at IDF next month including details on a wide array of technology for server, workstation, desktop and graphics chips. The upcoming Tukwila chip will replace the current Itanium lineup with about twice the performance at a cost of 2 billion transistors and Dunnington is a hexa-core processor using existing Core 2 architecture. Details of Nehalem, Intel's next desktop CPU core that includes an integrated memory controller, show a return of HyperThreading-like SMT, a new SSE 4.2 extension and modular design that features optional integrated graphics on the CPU as well. Could Intel beat AMD in its own "Fusion" plans? Finally, Larrabee, the GPU technology Intel is building, was verified to support OpenGL and DirectX upon release and Intel provided information on a new extension called Advanced Vector Extension (AVX) for SSE that would improve graphics performance on the many-core architecture."

6 of 166 comments (clear)

  1. Re:Nehalem? Larrabee? by slew · · Score: 3, Interesting

    Nehalem? Larrabee?
    Heck, I remember when "Pentium" came out and people laughed

    Heck, I remember when "Itanium" came out and people laughed...

    But before they laughed, I remember a bunch of companies folded up their project tents (sun, mips, the remains of dec/alpha). I'm not so sure companies will do the same this time around... Not saying this time Intel doesn't have their ducks in a row, but certainly, the past is no indication of the future...
  2. Re:Intel Vs. AMD? by eggnoglatte · · Score: 3, Interesting

    Your post makes me think that Intel will attempt a take-over of Nvidia, hostile or otherwise. But I have no knowledge in this area. Why would they? Intel already has the biggest GPU marketshare (bout 50% or so), and they achieve that with integrated graphics, that are arguably the way of the future. My guess is that NVIDIA will become the SGI of the early 21st century - they'll cater to a high-speed niche market. Too bad, actually, I kind of like their cards (and they have by far the best 3D Linux performance).
  3. Ummmmm, no by Sycraft-fu · · Score: 4, Interesting

    First off, new integrated Intel chipsets do just find for desktop acceleration. One of our professors got a laptop with an X3000 chip and it does quite well in Vista. All the eye candy works and is plenty snappy.

    However, this will be much faster since it fixes a major problem with integrated graphics: Shared RAM. All integrated Intel chipsets nab system RAM to work. Makes sense, this keeps costs down and that is the whole idea behind them. The problem is it is slow. System RAM is much slower than video RAM. As an example, high end systems might have a theoretical max RAM bandwidth of 10GB/sec if they have the latest DDR3. In reality, it is going to be more along the lines of 5GB/sec in systems that have integrated graphics. A high end graphics card can have 10 TIMES that. The 8800 Ultra has a theoretical bandwidth over 100GB/sec.

    Well, in addition to the RAM not being as fast, the GPU has to fight with the CPU for access to it. All in all, it means that RAM access is just not fast for the GPU. That is a major limiting factor in modern graphics. Pushing all those pixels with multiple passes of textures takes some serious memory bandwidth. No problem for a discrete card, of course, it'll have it's own RAM just like any other.

    In addition to that, it looks like they are putting some real beefy processing power on this thing.

    As such I expect this will perform quite well. Will it do as good as the offerings from nVidia or ATi? Who knows? But this clearly isn't just an integrated chip on a board.

  4. Re:Nehalem? Larrabee? by TheRaven64 · · Score: 4, Interesting

    But before they laughed, I remember a bunch of companies folded up their project tents (sun, mips, I think you are mistaken. MIPS still exists, but SGI stopped using it. HP killed both PA RISC and Alpha, but they co-developed Itanium, so it isn't entirely surprising. Sun kept developing chips, and currently hold the performance-per-watt crown for a lot of common web-server tasks.
    --
    I am TheRaven on Soylent News
  5. The Giant is awakened by markass530 · · Score: 3, Interesting

    I say this, as an admitted AMD fanboy, and in hopes that they can make a comeback, to once again force intel into a frenzy of research and development. I Can't help but imagine that AMD exec's are saying something along the lines of Isoroku Yamamota's famous WWII post pearl harbor quote, "I fear that all we have done is to awaken a sleeping giant." It's all gravy for consumers so one can't help to be happy at the current developments. However to ensure future happiness for consumers, one must also hope for an AMD Comeback.

  6. Re:Gflargen and Blackeblae by Hal_Porter · · Score: 3, Interesting
    Why are they called Arabic anyway? The only justification is that al Khwarizmi wrote a book popularising them in 825AD but they were actually invented centuries before hand in India.

    They weren't even used in the Arab world until modern times -

    http://en.wikipedia.org/wiki/History_of_the_Hindu-Arabic_numeral_system

    In the Arab world - until modern times - the Arabic numeral system was used only by mathematicians. Muslim scientists used the Babylonian numeral system, and merchants used the Abjad numerals. It was not until Fibonacci that the Arabic numeral system was used by a large population.
    --
    echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;