hls::stream.full() メソッド - 2023.2 日本語

Vitis 高位合成ユーザー ガイド (UG1399)

Document ID
UG1399
Release Date
2023-12-18
Version
2023.2 日本語

hls::stream.full() メソッドは、次のように、オブジェクトがフルの場合に true を返します。

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

stream_full = my_stream.full();