Intel AVX2 Assembly Development

岁酱吖の 提交于 2019-12-21 21:18:54

问题


I am Optimizing the my Video Decoder using Intel assembly for 64-bit architecture. For optimization am using AVX2 instruction set.

My development Environment:-
OS :- Win 7(64-bit)
IDE:- MSVS 2008(Prof)
CPU:- Core i5(support up to AVX)
Assembler:- YASM

I would like to know is there any emulators to run and debug my AVX2 code without upgrading the hardware.
Majorly am looking to run & debug my application on existing environment. Any suggestions?


回答1:


You can download the Intel SDE (Software Development Emulator) for free and use that - it works pretty well. Native instructions run at full speed - only your AVX2 instructions will be emulated.

You'll need a compiler that supports AVX2 as well of course (gcc, clang, Intel ICC or failing that an up-to-date Visual Studio).

One final word: I would strongly advise that you use intrinsics rather than native asm - it will save a you a lot of time and effort, it will be more portable, and it makes things easier if you need to target both 32 bit and 64 bit platforms.



来源:https://stackoverflow.com/questions/22626039/intel-avx2-assembly-development

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!