vote up 2 vote down star
1

Should my program support IA64, or should it only support x64?

I haven't been able to easily find IA64 computers myself. Is IA64 dead?

MS seems to have a wide support for IA64, but it took me a long time to be able to find an IA64, and I had to end up getting it on eBay.

flag

4 Answers

vote up 3 vote down check

What kind of software do you develop? If it's not a data center type of application or a high-end number crunching app, I'd be surprised if there were any demand for an ia64 version. And even then, I'd think it would be a situation where if you have to ask if you should support it, you probably don't need to.

A couple things off the top of my head that might hamper an ia64 port:

  • any third party tools or libraries you're depending on need to support it
  • unaligned accesses that go largely unnoticed on x86 and x64 will cause headaches on ia64

Of course, I don't work for Gartner or IDC or anyone who does market analysis, so you should take what I say here with whatever skepticism you have lying around.

Have any customers or potential customers inquired?

link|flag
vote up 2 vote down

You're the only person qualified to make the judgement of whether expected sales will cover the cost of developing and supporting it.

link|flag
vote up 0 vote down

If you're writing in C++, does it really matter? What I mean is, you don't say what makes your program "need to know" about the underlying architecture of the machine it is running on. From C++ itself, you should be fairly well protected against any differences between the two. Of course, testing on an esoteric platform might be difficult, but do you have to test it yourself on all platforms you "support"?

link|flag
I'd say yes, you cannot sell a product that you haven't tested. – quinmars Oct 21 '08 at 8:37
Also there is a much bigger cost than just development. Support, and QA come to mind as the major ones. – Brian R. Bondy Oct 21 '08 at 11:58
vote up 0 vote down

I wouldn't bother with IA64 support unless a client specifically asks for it. Otherwise, it's just another platform to test. Does Intel still make any IA64-based processors?

link|flag
Yes, the IA64 platform is still alive and growing. It's an excellent processor design. Too bad we're held back by all this legacy code. :( – Brian Knoblauch Oct 21 '08 at 12:49
Yes, the IA64 platform is still alive. I would call it a bold but failed design. It has been very hard to write effective compilers for it, since it exploits instruction-level parallelism at compile-time rather than run-time. And the processors are WAAY more expensive than Opteron for no clear gain. – Dan Oct 21 '08 at 18:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.