image/svg+xmlVRCP28PS—Approximation to the Reciprocal of Packed Single-Precision Floating-Point Values with Less Than 2^-28 Relative ErrorInstruction Operand EncodingDescriptionComputes the reciprocal approximation of the float32 values in the source operand (the second operand) and store the results to the destination operand (the first operand) using the writemask k1. The approximate reciprocal is evaluated with less than 2^-28 of maximum relative error prior to final rounding. The final results are rounded to < 2^-23 relative error before written to the destination.Denormal input values are treated as zeros and do not signal #DE, irrespective of MXCSR.DAZ. Denormal results are flushed to zeros and do not signal #UE, irrespective of MXCSR.FTZ.If any source element is NaN, the quietized NaN source value is returned for that element. If any source element is ±, ±0.0 is returned for that element. Also, if any source element is ±0.0, ± is returned for that element.The source operand is a ZMM register, a 512-bit memory location, or a 512-bit vector broadcasted from a 32-bit memory location. The destination operand is a ZMM register, conditionally updated using writemask k1. EVEX.vvvv is reserved and must be 1111b otherwise instructions will #UD.A numerically exact implementation of VRCP28xx can be found at https://software.intel.com/en-us/articles/refer-ence-implementations-for-IA-approximation-instructions-vrcp14-vrsqrt14-vrcp28-vrsqrt28-vexp2.OperationVRCP28PS (EVEX encoded versions) (KL, VL) = (16, 512)FOR j := 0 TO KL-1i := j * 32IF k1[j] OR *no writemask* THENIF (EVEX.b = 1) AND (SRC *is memory*)THEN DEST[i+31:i] := RCP_28_SP(1.0/SRC[31:0]);ELSE DEST[i+31:i] := RCP_28_SP(1.0/SRC[i+31:i]);FI;ELSE IF *merging-masking*; merging-maskingTHEN *DEST[i+31:i] remains unchanged*ELSE ; zeroing-maskingDEST[i+31:i] := 0FI;FI;ENDFOR;Opcode/InstructionOp / En64/32 bit Mode SupportCPUID Feature FlagDescriptionEVEX.512.66.0F38.W0 CA /rVRCP28PS zmm1 {k1}{z}, zmm2/m512/m32bcst {sae}AV/VAVX512ERComputes the approximate reciprocals ( < 2^-28 relative error) of the packed single-precision floating-point values in zmm2/m512/m32bcst and stores the results in zmm1. Under writemask.Op/EnTuple TypeOperand 1Operand 2Operand 3Operand 4AFullModRM:reg (w)ModRM:r/m (r)NANA

image/svg+xmlIntel C/C++ Compiler Intrinsic EquivalentVRCP28PS _mm512_rcp28_round_ps ( __m512 a, int sae);VRCP28PS __m512 _mm512_mask_rcp28_round_ps(__m512 s, __mmask16 m, __m512 a, int sae);VRCP28PS __m512 _mm512_maskz_rcp28_round_ps( __mmask16 m, __m512 a, int sae);SIMD Floating-Point ExceptionsInvalid (if SNaN input), Divide-by-zeroOther ExceptionsSee Table2-46, “Type E2 Class Exception Conditions”.Table 6-5. VRCP28PS Special CasesInput valueResult valueCommentsNANQNAN(input)If (SRC = SNaN) then #I0 X < 2-126INFPositive input denormal or zero; #Z-2-126 < X -0-INFNegative input denormal or zero; #ZX > 2126+0.0fX < -2126-0.0fX = ++0.0fX = --0.0fX = 2-n2nExact result (unless input/output is a denormal)X = -2-n-2nExact result (unless input/output is a denormal)

This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.