_mm256_hypot_ph
Classification
SVML, Elementary Math Functions, CPUID Test: AVX512_FP16
Header File
immintrin.h
Synopsis
 _mm256_hypot_ph(__m256h a, __m256h b);
Description
Compute the length of the hypotenous of a right triangle, with the lengths of the other two sides of the triangle stored as packed half-precision (16-bit) floating-point elements in "a" and "b", and store the results in "dst".
Operation
FOR j := 0 to 15
	i := j*16
	dst[i+15:i] := SQRT(POW(a[i+15:i], 2.0) + POW(b[i+15:i], 2.0))
ENDFOR
dst[MAX:256] := 0