Slashdot Mirror


IBM to Drop Itanium

Hack Jandy writes "Xbitlabs is reporting that IBM chose not to persue Itanium in their next generation server lineup because of the "market acceptance issues" of the platform. They will still continue with new revisions of Xeon servers, however. With IBM's investments in Power, I can't help but think the writing was already on the wall. The article also hints that IBM might start using Power in their high end server products."

10 of 181 comments (clear)

  1. Getting leaner, IBM? by osewa77 · · Score: 5, Interesting

    First they drop a PC line tha was not making them money. Then they drop a server line that's clearly not the future of that space. I think they're making some right decisions here. If the POWER platform succeeds, as it more likely would when resources are focussed on it, and it is accepted as a viable alternative to the PC platform, the ensuing competition would probably be good for all of us.

  2. Re:From the summary: by drinkypoo · · Score: 4, Interesting

    IBM doesn't market IBM products. They market IBM. You buy into IBM, you do everything their way, and everything will work. These days, they add "...and you will get the best possible performance" to that, too. Nothing out there has the performance of the latest-generation POWER processors. As IBM has been busy proving building supercomputer after supercomputer, it scales pretty well too :) Granted, highly parallel opteron processors are pretty slick, but given a level playing field I know what I'd pick. Intel introduced itanium too late and at too high a cost to make enough inroads before opteron started to take off, and now itanic has no chance to proliferate enough to ever become inexpensive. IBM has been putting work specifically into making their cores as modular as possible so they can easily turn them into other versions ever since the PowerPC 601, which is why we new PowerPC cores so closely follow the release of new POWER cores.

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  3. IBM using Power based CELL CPUs by Anonymous Coward · · Score: 2, Interesting

    IBM will be using the new Power based CELL CPUs in their new servers. Two of my friends are already working on the new architecture but unfortunately can't talk about any of the details. Both, IBM and SONY, will be using CELL CPUs in virtually all of their new products from DVD players to supercomputers. Anyone wants to make a bet with me?

  4. Re:I'll miss it by e-r00 · · Score: 2, Interesting

    I'll miss it too. It was the very best CPU for our computationally-intensive applications. Is usually won with P4s and Athlons with 2 times higher clock speed... We'll miss you, Itanium :(

  5. Re:Stick a fork in it, it's done by IGnatius+T+Foobar · · Score: 4, Interesting

    IBM already uses it in their high-end server products, like the ones that used to be called RS/6000.

    Actually, that hardly does it justice. pSeries (formerly RS/6000), yes, but also iSeries (formerly AS/400) is now POWER. The new OpenPower line of systems from IBM can run AIX, i5/OS (formerly OS/400), and Linux. In fact, it can run them simultaneously thanks to IBM's really good server partitioning technology (you can partition down to 1/10 of a CPU!).

    I'm currently doing some development work on one of these boxes (running Linux on POWER) and let me tell you, it just smokes. Runs circles around Itanium, even before you start parallelizing (which is usually the case, since you're always going to have a dual-core chip, maybe even several of them).

    IBM has absolutely no reason to continue supporting Itanium. It doesn't buy them anything. Itanic is an architecture nobody wants. If Intel hadn't sank so much R&D into it while still being able to live off the revenue from their 32-bit processors (and now, their AMD64 clones), Itanium would have been shelved a year ago.

    --
    Tired of FB/Google censorship? Visit UNCENSORED!
  6. Re:I'll miss it by Anonymous Coward · · Score: 1, Interesting
    Java has had that for ages, and do some very neat CPU-specific optimisations.

    I don't know about the Java perfomance on Itanium in particular though.

  7. Re:Cell ? by Anonymous Coward · · Score: 1, Interesting

    Speculations are not an engineer's tool. Unless you have concrete data to support your claim, there is no need to bark in the dark. Itanium is a great chip, some of its architectural features are better than others. Cell is also reviving data-flow architecture to exploit memeroy bandwidth applications (image processing).

  8. Re:AMD64 by Anarke_Incarnate · · Score: 5, Interesting

    AMD64 is the real deal. EM64T is a kludge that is mostly compatible with AMD64. AMD64 has better performance and better handling of >4GB RAM.

  9. Speaking as an Itanium Architect by Anonymous Coward · · Score: 1, Interesting

    I think that Intel buying the HP team means they are going to do one last Itanic, then just cut them off. Perhaps they just need to fulfill prior obligations before they kill it off? Working at Alpha was so much better than Itanic.

  10. Re:AMD64 by Hal_Porter · · Score: 3, Interesting

    Yeah, I read about that, it's a cool hack, in the most positive sense of using something in a way that it was not designed for. Intel failed to spot this extra use for the AGP GART when they cloned the chip I suppose.

    It's an interesting question though. AMD got to design the chip and the architecture at the same time. Intel had to retrofit AMD's 64 bit stuff to the P4. There are all kinds of reasons why this would be hard - the P4 had a dual speed ALU which needed to be widened to 64 bit for instance.

    I wouldn't be surprised at all if the resulting chip had some performance issues, but I haven't seen any benchmarks as to comparative 64 bit performance though. I don't particular like P4's even for 32 bit stuff - it looks like they ultrapipelined the CPU to get higher clock frequencies in a way that reduces performance compared to a similar priced AMD part for instance, whereas AMD seems to have worried about real benchmarks like Spec and ( Doom3 :-) )

    Did retrofitting AMD^H^H^HEMT64 make it worse?

    --
    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;