Instruction
TOP4BSSD
ACE outer product of two ZMM registers of signed bytes, four per dword, accumulated into a tile of 32-bit integers.
- Extensions
- Forms
- 1 (1 EVEX)
- Data
- Intel XED v2026.08.23
TOP4BSSD is the basic ACE outer product. Both sources are ZMM registers of 16 dwords, each dword holding four signed bytes. For every row i and column j of the destination tile, it adds the dot product of dword i of the first source and dword j of the second (four byte products) to the 32-bit integer at (i, j): a 16 × 16 update of the whole tile, 1024 multiplications.
A matrix multiplication loop therefore loads a vector holding a 16 × 4 slice of A and one holding a 4 × 16 slice of B for each step of four along the shared dimension, and after the last step moves the finished 16 × 16 block out with TILEMOVROW. The signed and unsigned variants are TOP4BSUD, TOP4BUSD and TOP4BUUD; the first letter after TOP4B gives the type of the first source.
Forms
| Instruction | Encoding | Requires |
|---|---|---|
TOP4BSSD tmm, zmm, zmm 64-bit mode only
TOP4BSSD_TMMu32_ZMMi8_ZMMi8 | EVEX.512.F2.0F38.W0 5E /r | ACE v1 |
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 |
|---|---|---|
ACE_1 | ACE v1 | None yet: XED lists these instructions only under its placeholder for future processors. |
More ACE instructions
Sources
- Intel XED v2026.08.23 (commit
0bcb6237345c): forms, encodings, ISA sets, CPUID bits and chip model. - x86 Ecosystem Advisory Group: AI Compute Extensions (ACE) Specification, version 1.16.2 (July 2026)
- x86 Ecosystem Advisory Group: The AI Compute Extensions (ACE) for x86, whitepaper version 1.0 (April 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 text is our own.