TMATMUL_MX¶
Tile Operation Diagram¶
Introduction¶
Matrix multiply (GEMM) with additional scaling tiles for mixed-precision / quantized matmul on supported targets.
This instruction is currently implemented on A5 (see include/pto/npu/a5/TMatmul.hpp).
Math Interpretation¶
Let:
M = aMatrix.GetValidRow()K = aMatrix.GetValidCol()N = bMatrix.GetValidCol()
Conceptually, the result corresponds to a matrix multiply over the effective matmul domain (0 <= i < M, 0 <= j < N), with the scaling tiles aScaleMatrix / bScaleMatrix configuring implementation-defined mixed-precision behavior:
\[ \mathrm{C}_{i,j} = \sum_{k=0}^{K-1} \mathrm{A}_{i,k} \cdot \mathrm{B}_{k,j} \]
The exact role of aScaleMatrix / bScaleMatrix (and any dequant/quant semantics) is target-defined.
Assembly Syntax¶
PTO-AS form: see PTO-AS Specification.
Synchronous forms (conceptual):
%c = tmatmul.mx %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>) -> !pto.tile<...>
%c_out = tmatmul.mx.acc %c_in, %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>) -> !pto.tile<...>
%c = tmatmul.mx.bias %a, %a_scale, %b, %b_scale, %bias : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>) -> !pto.tile<...>
IR Level 1 (SSA)¶
%c = pto.tmatmul.mx %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>)
-> !pto.tile<...>
%c_out = pto.tmatmul.mx.acc %c_in, %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>,
!pto.tile<...>, !pto.tile<...>, !pto.tile<...>) -> !pto.tile<...>
%c = pto.tmatmul.mx.bias %a, %a_scale, %b, %b_scale, %bias : (!pto.tile<...>, !pto.tile<...>,
!pto.tile<...>, !pto.tile<...>, !pto.tile<...>) -> !pto.tile<...>
IR Level 2 (DPS)¶
pto.tmatmul.mx ins(%a, %a_scale, %b, %b_scale : !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>)
outs(%c : !pto.tile_buf<...>)
pto.tmatmul.mx.acc ins(%c_in, %a, %a_scale, %b, %b_scale : !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>,
!pto.tile_buf<...>, !pto.tile_buf<...>) outs(%c_out : !pto.tile_buf<...>)
pto.tmatmul.mx.bias ins(%a, %a_scale, %b, %b_scale, %bias : !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>,
!pto.tile_buf<...>, !pto.tile_buf<...>) outs(%c : !pto.tile_buf<...>)
C++ Intrinsic¶
Declared in include/pto/common/pto_instr.hpp:
template <typename TileRes, typename TileLeft, typename TileLeftScale, typename TileRight, typename TileRightScale,
typename... WaitEvents>
PTO_INST RecordEvent TMATMUL_MX(TileRes &cMatrix, TileLeft &aMatrix, TileLeftScale &aScaleMatrix, TileRight &bMatrix,
TileRightScale &bScaleMatrix, WaitEvents&... events);
template <typename TileRes, typename TileLeft, typename TileLeftScale, typename TileRight, typename TileRightScale,
typename... WaitEvents>
PTO_INST RecordEvent TMATMUL_MX(TileRes &cOutMatrix, TileRes &cInMatrix, TileLeft &aMatrix, TileLeftScale &aScaleMatrix,
TileRight &bMatrix, TileRightScale &bScaleMatrix, WaitEvents&... events);
template <typename TileRes, typename TileLeft, typename TileLeftScale, typename TileRight, typename TileRightScale,
typename TileBias, typename... WaitEvents>
PTO_INST RecordEvent TMATMUL_MX(TileRes &cMatrix, TileLeft &aMatrix, TileLeftScale &aScaleMatrix, TileRight &bMatrix,
TileRightScale &bScaleMatrix, TileBias &biasData, WaitEvents&... events);
Constraints¶
- Implementation checks (A5):
m/k/nare taken fromaMatrix.GetValidRow(),aMatrix.GetValidCol(),bMatrix.GetValidCol().- Static legality checks are enforced via
CheckMadMxValid<...>()(types, shapes, fractals, and scaling tile legality). - Bias form:
TileBias::DTypemust befloatandTileBias::Loc == TileType::BiaswithTileBias::Rows == 1(A5 checks viastatic_assert).
Examples¶
Auto¶
#include <pto/pto-inst.hpp>
using namespace pto;
void example_auto() {
using A = TileLeft<float8_e5m2_t, 16, 64>;
using B = TileRight<float8_e5m2_t, 64, 32>;
using ScaleA = TileLeftScale<float8_e8m0_t, 16, 2>;
using ScaleB = TileRightScale<float8_e8m0_t, 2, 32>;
using Bias = Tile<TileType::Bias, float, 1, 32>;
using C = TileAcc<float, 16, 32>;
A a;
B b;
ScaleA scaleA;
ScaleB scaleB;
Bias bias;
C c;
TMATMUL_MX(c, a, scaleA, b, scaleB, bias);
}
Manual¶
#include <pto/pto-inst.hpp>
using namespace pto;
void example_manual() {
using A = TileLeft<float8_e5m2_t, 16, 64>;
using B = TileRight<float8_e5m2_t, 64, 32>;
using ScaleA = TileLeftScale<float8_e8m0_t, 16, 2>;
using ScaleB = TileRightScale<float8_e8m0_t, 2, 32>;
using Bias = Tile<TileType::Bias, float, 1, 32>;
using C = TileAcc<float, 16, 32>;
A a;
B b;
ScaleA scaleA;
ScaleB scaleB;
Bias bias;
C c;
TASSIGN(a, 0x1000);
TASSIGN(b, 0x2000);
TASSIGN(scaleA, GetScaleAddr(a.data()));
TASSIGN(scaleB, GetScaleAddr(b.data()));
TASSIGN(bias, 0x3000);
TASSIGN(c, 0x4000);
TMATMUL_MX(c, a, scaleA, b, scaleB, bias);
}
ASM Form Examples¶
Auto Mode¶
# Auto mode: compiler/runtime-managed placement and scheduling.
%c = pto.tmatmul.mx %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>)
Manual Mode¶
# Manual mode: bind resources explicitly before issuing the instruction.
# Optional for tile operands:
# pto.tassign %arg0, @tile(0x1000)
# pto.tassign %arg1, @tile(0x2000)
%c = pto.tmatmul.mx %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>)
PTO Assembly Form¶
%c = pto.tmatmul.mx %a, %a_scale, %b, %b_scale : (!pto.tile<...>, !pto.tile<...>, !pto.tile<...>, !pto.tile<...>)
# IR Level 2 (DPS)
pto.tmatmul.mx ins(%a, %a_scale, %b, %b_scale : !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>, !pto.tile_buf<...>)