hls::stream.full() Method - 2023.2 English

Vitis High-Level Synthesis User Guide (UG1399)

Document ID
UG1399
Release Date
2023-12-18
Version
2023.2 English

The hls::stream.full() method returns true if and only if the object is full, as shown below:

hls::stream<int> my_stream;
int src_var = 42;
bool stream_full;

stream_full = my_stream.full();