SVE Instruction List by Dougall Johnson
See "CMP<cc> (immediate)" in the exploration tools

CMPNE (immediate): Compare vector to immediate

CMPNE Pd.B, Pg/Z, Zn.B, #imm (SVE (SME
svbool_t svcmpne[_n_s8](svbool_t pg, svint8_t op1, int8_t op2)
svbool_t svcmpne[_n_u8](svbool_t pg, svuint8_t op1, uint8_t op2)
svbool_t svcmpne_wide[_n_s8](svbool_t pg, svint8_t op1, int64_t op2)

128-bit SVE

For each 8-bit integer set the corresponding predicate bit in (3) to (2) != (1), setting flags based on the resulting predicate. The immediate is limited to -16 ≤ imm ≤ 15.

256-bit SVE

For each 8-bit integer set the corresponding predicate bit in (3) to (2) != (1), setting flags based on the resulting predicate. The immediate is limited to -16 ≤ imm ≤ 15.

512-bit SVE

For each 8-bit integer set the corresponding predicate bit in (3) to (2) != (1), setting flags based on the resulting predicate. The immediate is limited to -16 ≤ imm ≤ 15.

Larger sizes

1024-bit SVE

For each 8-bit integer set the corresponding predicate bit in (3) to (2) != (1), setting flags based on the resulting predicate. The immediate is limited to -16 ≤ imm ≤ 15.

2048-bit SVE

For each 8-bit integer set the corresponding predicate bit in (3) to (2) != (1), setting flags based on the resulting predicate. The immediate is limited to -16 ≤ imm ≤ 15.

Report mistakes or give feedback
Inspired by and based on the x86/x64 SIMD Instruction List by Daytime.