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?