Intel® C++ Compiler Classic Developer Guide and Reference

ID 767249
Date 7/13/2023
Public
Document Table of Contents

_tile_stored

Synopsis

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

Description

Store the tile specified by "src" to memory specifieid by "base" address and "stride" using the tile configuration previously configured via "_tile_loadconfig".

Technology

AMX

Category

Application-Targeted

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()