Intel® C++ Compiler Classic Developer Guide and Reference

ID 767249
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

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