Load and Store Using Streams - 2022.1 English

AI Engine Kernel Coding Best Practices Guide (UG1079)

Document ID
UG1079
Release Date
2022-05-25
Version
2022.1 English

Vector data can also be loaded from or stored in streams as shown in the following example.

void func(input_stream_int32 *s0, input_stream_int32 *s1, …){
	for(…){
		data0=readincr(s0);
		data1=readincr(s1);
		…
	}
}

For more information about window and streaming data API usage, see Window and Streaming Data API in the Versal ACAP AI Engine Programming Environment User Guide (UG1076).