Intel AVX2 Assembly Development

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 14:38:54

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.

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