__tile_stored
Classification
AMX, Application-Targeted, CPUID Test: AMX-TILE
Header File
Instruction
TILESTORED sibmem, tmm
Synopsis
__tile_stored(void* base, size_t stride, __tile1024i src);
Description
Store the tile specified by "src" to memory specifieid by "base" address and "stride". The shape of tile is specified in the struct of __tile1024i. The register of the tile is allocated by compiler.
Operation
start := tileconfig.startRow
DO WHILE start < src.rows
memptr := base + start * stride
write_memory(memptr, src.colsb, src.row[start])
start := start + 1
OD
zero_tileconfig_start()