_mm256_pow_ph
Classification
SVML, Elementary Math Functions, CPUID Test: AVX512_FP16
Header File
Synopsis
_mm256_pow_ph(__m256h a, __m256h b);
Description
Compute the exponential value of packed half-precision (16-bit) floating-point elements in "a" raised by packed elements in "b", and store the results in "dst".
Operation
FOR j := 0 to 15
i := j*16
dst[i+15:i] := POW(a[i+15:i], b[i+15:i])
ENDFOR
dst[MAX:256] := 0