Extensions
Forms
6 (6 EVEX)
Data
Intel XED v2026.08.23

The classic MINPS and MAXPS, and their VEX and EVEX forms VMINPS and VMAXPS, are not symmetric: when either input is a NaN, or both are zeros of any sign, they return the second source. Languages that need the IEEE 754-2019 operations, such as WebAssembly’s f32.min, therefore need several extra instructions around them.

VMINMAXPS computes the standard operations directly. Its immediate selects one of eight:

imm8[4]imm8[1:0]Operation
000 / 01minimum / maximum: a NaN input gives a quiet NaN
010 / 11minimumMagnitude / maximumMagnitude: compares absolute values
100 / 01minimumNumber / maximumNumber: a NaN input loses to a number
110 / 11minimumMagnitudeNumber / maximumMagnitudeNumber

In all of them -0 is less than +0. Bits 3:2 control the sign of a non-NaN result: take the sign of the first source (00), keep the sign of the result (01), clear it (10) or set it (11). Bits 7:5 are reserved.

The same immediate works for VMINMAXPD, VMINMAXPH, VMINMAXBF16 and the scalar VMINMAXSS, VMINMAXSD and VMINMAXSH.

Forms

Every encoding of VMINMAXPS that Intel XED knows, one row per XED instruction form (iform). How to read the notation.
InstructionEncodingRequires
VMINMAXPS xmm {k}{z}, xmm, xmm, imm8 VMINMAXPS_XMMf32_MASKmskw_XMMf32_XMMf32_IMM8_AVX512EVEX.128.66.0F3A.W0 52 /r ibAVX10.2
VMINMAXPS xmm {k}{z}, xmm, m128/m32bcst, imm8 VMINMAXPS_XMMf32_MASKmskw_XMMf32_MEMf32_IMM8_AVX512EVEX.128.66.0F3A.W0 52 /r ibAVX10.2
VMINMAXPS ymm {k}{z}, ymm, ymm, imm8 VMINMAXPS_YMMf32_MASKmskw_YMMf32_YMMf32_IMM8_AVX512EVEX.256.66.0F3A.W0 52 /r ibAVX10.2
VMINMAXPS ymm {k}{z}, ymm, m256/m32bcst, imm8 VMINMAXPS_YMMf32_MASKmskw_YMMf32_MEMf32_IMM8_AVX512EVEX.256.66.0F3A.W0 52 /r ibAVX10.2
VMINMAXPS zmm {k}{z}, zmm, zmm, imm8, {sae} VMINMAXPS_ZMMf32_MASKmskw_ZMMf32_ZMMf32_IMM8_AVX512EVEX.512.66.0F3A.W0 52 /r ibAVX10.2
VMINMAXPS zmm {k}{z}, zmm, m512/m32bcst, imm8 VMINMAXPS_ZMMf32_MASKmskw_ZMMf32_MEMf32_IMM8_AVX512EVEX.512.66.0F3A.W0 52 /r ibAVX10.2

Intrinsics

The C intrinsics of Clang 23.1.2 that compile to VMINMAXPS, each with the form it compiles to and the Clang options it needs. The forms come from compiling every intrinsic and decoding the result with Intel XED; all intrinsics A–Z explains the method.

IntrinsicCompiles to
_mm_minmax_ps __m128 _mm_minmax_ps(__m128 A, __m128 B, const int C)

VMINMAXPS xmm, xmm, xmm, imm8 EVEX.128 -mavx10.2

VMINMAXPS xmm, xmm, xmm, imm8 EVEX.128 -mavx -mavx10.2with AVX enabled

_mm_mask_minmax_ps __m128 _mm_mask_minmax_ps(__m128 W, __mmask8 U, __m128 A, __m128 B, const int C)

VMINMAXPS xmm {k}, xmm, xmm, imm8 EVEX.128 -mavx10.2

VMINMAXPS xmm {k}, xmm, xmm, imm8 EVEX.128 -mavx -mavx10.2with AVX enabled

_mm_maskz_minmax_ps __m128 _mm_maskz_minmax_ps(__mmask8 U, __m128 A, __m128 B, const int C)

VMINMAXPS xmm {k}{z}, xmm, xmm, imm8 EVEX.128 -mavx10.2

VMINMAXPS xmm {k}{z}, xmm, xmm, imm8 EVEX.128 -mavx -mavx10.2with AVX enabled

_mm256_minmax_ps __m256 _mm256_minmax_ps(__m256 A, __m256 B, const int C)

VMINMAXPS ymm, ymm, ymm, imm8 EVEX.256 -mavx10.2 -mavx

VMINMAXPS ymm, ymm, ymm, imm8 EVEX.256 -mavx -mavx10.2with AVX enabled

_mm256_mask_minmax_ps __m256 _mm256_mask_minmax_ps(__m256 W, __mmask8 U, __m256 A, __m256 B, const int C)

VMINMAXPS ymm {k}, ymm, ymm, imm8 EVEX.256 -mavx10.2

VMINMAXPS ymm {k}, ymm, ymm, imm8 EVEX.256 -mavx -mavx10.2with AVX enabled

_mm256_maskz_minmax_ps __m256 _mm256_maskz_minmax_ps(__mmask8 U, __m256 A, __m256 B, const int C)

VMINMAXPS ymm {k}{z}, ymm, ymm, imm8 EVEX.256 -mavx10.2 -mavx

VMINMAXPS ymm {k}{z}, ymm, ymm, imm8 EVEX.256 -mavx -mavx10.2with AVX enabled

_mm512_minmax_ps __m512 _mm512_minmax_ps(__m512 A, __m512 B, const int C)

VMINMAXPS zmm, zmm, zmm, imm8 EVEX.512 -mavx10.2 -mavx512f

VMINMAXPS zmm, zmm, zmm, imm8 EVEX.512 -mavx -mavx10.2 -mavx512fwith AVX enabled

_mm512_minmax_round_ps __m512 _mm512_minmax_round_ps(__m512 A, __m512 B, const int C, const int R)

VMINMAXPS zmm, zmm, zmm, imm8, {sae} EVEX.512 -mavx10.2 -mavx512f

VMINMAXPS zmm, zmm, zmm, imm8, {sae} EVEX.512 -mavx -mavx10.2 -mavx512fwith AVX enabled

_mm512_mask_minmax_ps __m512 _mm512_mask_minmax_ps(__m512 W, __mmask16 U, __m512 A, __m512 B, const int C)

VMINMAXPS zmm {k}, zmm, zmm, imm8 EVEX.512 -mavx10.2

VMINMAXPS zmm {k}, zmm, zmm, imm8 EVEX.512 -mavx -mavx10.2with AVX enabled

_mm512_mask_minmax_round_ps __m512 _mm512_mask_minmax_round_ps(__m512 W, __mmask16 U, __m512 A, __m512 B, const int C, const int R)

VMINMAXPS zmm {k}, zmm, zmm, imm8, {sae} EVEX.512 -mavx10.2

VMINMAXPS zmm {k}, zmm, zmm, imm8, {sae} EVEX.512 -mavx -mavx10.2with AVX enabled

_mm512_maskz_minmax_ps __m512 _mm512_maskz_minmax_ps(__mmask16 U, __m512 A, __m512 B, const int C)

VMINMAXPS zmm {k}{z}, zmm, zmm, imm8 EVEX.512 -mavx10.2 -mavx512f

VMINMAXPS zmm {k}{z}, zmm, zmm, imm8 EVEX.512 -mavx -mavx10.2 -mavx512fwith AVX enabled

_mm512_maskz_minmax_round_ps __m512 _mm512_maskz_minmax_round_ps(__mmask16 U, __m512 A, __m512 B, const int C, const int R)

VMINMAXPS zmm {k}{z}, zmm, zmm, imm8, {sae} EVEX.512 -mavx10.2 -mavx512f

VMINMAXPS zmm {k}{z}, zmm, zmm, imm8, {sae} EVEX.512 -mavx -mavx10.2 -mavx512fwith AVX enabled

CPUID and processors

Each form belongs to an XED ISA set. A form can be used when the processor reports every CPUID bit of one of its ISA set's alternatives.

CPUID requirements and processors of the XED ISA sets above. Alternatives are separated by “or”; processors follow XED’s chip model, which covers AMD processors up to Zen 2.
ISA setCPUIDProcessors in XED
AVX512_MINMAX_128

AVX10.2
CPUID.(EAX=07H,ECX=1):EDX[19] AVX10
CPUID.(EAX=24H,ECX=0):EBX[7:0] ≥ 2 AVX10 version

Nova Lake, Diamond Rapids
AVX512_MINMAX_256

AVX10.2
CPUID.(EAX=07H,ECX=1):EDX[19] AVX10
CPUID.(EAX=24H,ECX=0):EBX[7:0] ≥ 2 AVX10 version

Nova Lake, Diamond Rapids
AVX512_MINMAX_512

AVX10.2
CPUID.(EAX=07H,ECX=1):EDX[19] AVX10
CPUID.(EAX=24H,ECX=0):EBX[7:0] ≥ 2 AVX10 version

Nova Lake, Diamond Rapids

More AVX10.2 instructions

All 96 AVX10.2 instructions

Sources

  1. Intel XED v2026.08.23 (commit 0bcb6237345c): forms, encodings, ISA sets, CPUID bits and chip model.
  2. Clang's x86 intrinsic headers, LLVM 23.1.2 (commit 85ac56026243): the intrinsics, their signatures and doc comments, and the Clang of that release, which compiled each of them.
  3. Intel Advanced Vector Extensions 10.2 Architecture Specification, revision 6.0 (361050-006, January 2026)
  4. Intel 64 and IA-32 Architectures Software Developer's Manual, Volume 2 (325383-092, June 2026)

The tables are derived from Intel XED, Copyright Intel Corporation, licensed under the Apache License 2.0; x86-64.net converted and reformatted them. The intrinsics and their signatures come from Clang, part of the LLVM Project, licensed under the Apache License 2.0 with LLVM Exceptions. The text is our own.