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