void _tile_stored (__tile src, void * base, int stride)
Type | Value |
---|---|
Type | Tile |
Header file | #include <immintrin.h> |
Instruction | TILESTORED sibmem, tmm |
CPUID flags | AMXTILE |
Store the tile specified by "src" to memory specifieid by "base" address and "stride" using the tile configuration previously configured via "_tile_loadconfig".
AMX
Application-Targeted
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()