Instruction
VMINMAXPH
Computes an IEEE 754-2019 minimum, maximum or magnitude comparison of packed half-precision values, as an immediate selects, with sign control.
- Extensions
- Forms
- 6 (6 EVEX)
- Data
- Intel XED v2026.08.23
Forms
| Instruction | Encoding | Requires |
|---|---|---|
VMINMAXPH xmm {k}{z}, xmm, xmm, imm8
VMINMAXPH_XMMf16_MASKmskw_XMMf16_XMMf16_IMM8_AVX512 | EVEX.128.NP.0F3A.W0 52 /r ib | AVX10.2 |
VMINMAXPH xmm {k}{z}, xmm, m128/m16bcst, imm8
VMINMAXPH_XMMf16_MASKmskw_XMMf16_MEMf16_IMM8_AVX512 | EVEX.128.NP.0F3A.W0 52 /r ib | AVX10.2 |
VMINMAXPH ymm {k}{z}, ymm, ymm, imm8
VMINMAXPH_YMMf16_MASKmskw_YMMf16_YMMf16_IMM8_AVX512 | EVEX.256.NP.0F3A.W0 52 /r ib | AVX10.2 |
VMINMAXPH ymm {k}{z}, ymm, m256/m16bcst, imm8
VMINMAXPH_YMMf16_MASKmskw_YMMf16_MEMf16_IMM8_AVX512 | EVEX.256.NP.0F3A.W0 52 /r ib | AVX10.2 |
VMINMAXPH zmm {k}{z}, zmm, zmm, imm8, {sae}
VMINMAXPH_ZMMf16_MASKmskw_ZMMf16_ZMMf16_IMM8_AVX512 | EVEX.512.NP.0F3A.W0 52 /r ib | AVX10.2 |
VMINMAXPH zmm {k}{z}, zmm, m512/m16bcst, imm8
VMINMAXPH_ZMMf16_MASKmskw_ZMMf16_MEMf16_IMM8_AVX512 | EVEX.512.NP.0F3A.W0 52 /r ib | AVX10.2 |
Intrinsics
The C intrinsics of Clang 23.1.2 that compile to VMINMAXPH, 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.
| Intrinsic | Compiles to |
|---|---|
_mm_minmax_ph
__m128h _mm_minmax_ph(__m128h A, __m128h B, const int C) |
|
_mm_mask_minmax_ph
__m128h _mm_mask_minmax_ph(__m128h W, int U, __m128h A, __m128h B, const int C) |
|
_mm_maskz_minmax_ph
__m128h _mm_maskz_minmax_ph(__mmask8 U, __m128h A, __m128h B, const int C) |
|
_mm256_minmax_ph
__m256h _mm256_minmax_ph(__m256h A, __m256h B, const int C) |
|
_mm256_mask_minmax_ph
__m256h _mm256_mask_minmax_ph(__m256h W, __mmask16 U, __m256h A, __m256h B, const int C) |
|
_mm256_maskz_minmax_ph
__m256h _mm256_maskz_minmax_ph(__mmask16 U, __m256h A, __m256h B, const int C) |
|
_mm512_minmax_ph
__m512h _mm512_minmax_ph(__m512h A, __m512h B, const int C) |
|
_mm512_minmax_round_ph
__m512h _mm512_minmax_round_ph(__m512h A, __m512h B, const int C, const int R) |
|
_mm512_mask_minmax_ph
__m512h _mm512_mask_minmax_ph(__m512h W, __mmask32 U, __m512h A, __m512h B, const int C) |
|
_mm512_mask_minmax_round_ph
__m512h _mm512_mask_minmax_round_ph(__m512h W, __mmask32 U, __m512h A, __m512h B, const int C, const int R) |
|
_mm512_maskz_minmax_ph
__m512h _mm512_maskz_minmax_ph(__mmask32 U, __m512h A, __m512h B, const int C) |
|
_mm512_maskz_minmax_round_ph
__m512h _mm512_maskz_minmax_round_ph(__mmask32 U, __m512h A, __m512h B, const int C, const int R) |
|
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.
| ISA set | CPUID | Processors in XED |
|---|---|---|
AVX512_MINMAX_128 | AVX10.2 | Nova Lake, Diamond Rapids |
AVX512_MINMAX_256 | AVX10.2 | Nova Lake, Diamond Rapids |
AVX512_MINMAX_512 | AVX10.2 | Nova Lake, Diamond Rapids |
More AVX10.2 instructions
- VDPPHPS
- VFMADD132BF16
- VFMADD213BF16
- VFMADD231BF16
- VFMSUB132BF16
- VFMSUB213BF16
- VFMSUB231BF16
- VFNMADD132BF16
- VFNMADD213BF16
- VFNMADD231BF16
- VFNMSUB132BF16
- VFNMSUB213BF16
- VFNMSUB231BF16
- VFPCLASSBF16
- VGETEXPBF16
- VGETMANTBF16
- VMAXBF16
- VMINBF16
- VMINMAXBF16
- VMINMAXPD
- VMINMAXPS
- VMINMAXSD
- VMINMAXSH
- VMINMAXSS
- VMOVD
- VMOVW
- VMPSADBW
- VMULBF16
- VPDPBSSD
- VPDPBSSDS
- VPDPBSUD
- VPDPBSUDS
- VPDPBUUD
- VPDPBUUDS
- VPDPWSUD
- VPDPWSUDS
- VPDPWUSD
- VPDPWUSDS
- VPDPWUUD
- VPDPWUUDS
Sources
- Intel XED v2026.08.23 (commit
0bcb6237345c): forms, encodings, ISA sets, CPUID bits and chip model. - 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. - Intel Advanced Vector Extensions 10.2 Architecture Specification, revision 6.0 (361050-006, January 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.