VC2012 where to find _mm256_pow_pd?

邮差的信 提交于 2019-12-12 00:57:52

问题


Using Visual Studio 2012/C++:

I need to apply gamma correction to my resampler code. From Intels Docs I learned that there should be the intrinsic _mm256_pow_pd(), but I can't find it.

Planned use:

_mm256_storeu_pd(&destinationData[y*dst4+x], _mm256_pow_pd(akku, _mm256_broadcast_sd(&gamma)));

Any ideas where Microsoft has hidden this intrinsic?


回答1:


Obviously I didn't google enough. This SO answer implicitly answers my question: https://stackoverflow.com/a/31515534/2896592

Content: _mm256_pow_pd is from Intel's SVML library - it's not really an intrinsic.

Workaround: take a look at Agner Fog's vector library



来源:https://stackoverflow.com/questions/32204876/vc2012-where-to-find-mm256-pow-pd

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