tags:

views:

124

answers:

3

Intel is set to release a new instruction set called AVX, which includes an extension of SSE to 256-bit operation. That is, either 4 double-precision elements or 8 single-precision elements.

How would one go about developing code for AVX, considering there's no hardware out there that supports it yet? More generally, how can developers write code for hardware that doesn't exist, for instance if they want to have software ready when the supporting CPU is released?

+4  A: 

Maybe I'm missing something about your question but it seems the answer is on the website that you linked. Use the Intel Compiler to get access to the new intrinsic functions so you can generate the code and use the emulator to test it.

gatorfax
Doh... must have missed the link on the right. Thanks
Nathan Fellman
+1  A: 

Contact Intel and ask if they have a simulator available? Not a hardware level simulator, but an instruction set simulator. Indeed Intel have an emulator available.

Or you could write one yourself - might be a fun project for some people!

JeeBee