我正在编写一个带有AXI4 Stream输入的HLS单元。流中的几个单词包含我想要访问的结构。例如:
struct eth_header {
ap_uint<48> dest;
ap_uint<48> source;
ap_uint<16> proto;
}
我可以轻松缓冲流的单词并将它们连接成一个大的ap_uint<112>
。但是,我非常希望将ap_uint<112>
转换为一个很好的结构,比如我可以使用字段语法访问的eth_header
。我找不到一个很好的方法来做到这一点。我无法强制转换或使用联合,因为ap_uint
类不是POD。
是否有可能以某种方式转换类型(不为每个字段编写显式代码)?
编辑:不清楚结构是否需要从流中的多个单词进行转换。
答案 0 :(得分:1)
我最后编写了显式代码来进行转换。例如:
struct eth_header {
ap_uint<48> dest;
ap_uint<48> source;
ap_uint<16> proto;
static const int width = 112;
eth_header(const ap_uint<width>& d) :
dest (d( 47, 0)),
source(d( 95, 48)),
proto (d(111, 96))
{}
operator ap_uint<width>()
{
return (hls_helpers::swap16(proto), source, dest);
}
};
这非常难看,但它是唯一对我有用的东西。
答案 1 :(得分:0)
正如here解释的那样,出于不同的原因,最好的方法是自己定义一个结构,其中包含您需要的数据和您喜欢的数据类型。例如,使用float:
struct my_data{
float data;
bool last;
};
并且,如果您使用的是AXI4流媒体界面:
#define N 32
void my_function(my_data input[N], my_data output[N])
{
#pragma HLS INTERFACE axis port=output
#pragma HLS INTERFACE axis port=input
#pragma HLS INTERFACE s_axilite port=return
float tmp_data;
float tmp_last;
int k=0;
for(k=0;k<N;k++)
{
tmp_data[k] = input[k].data;
tmp_last[k] = input[k].last;
}
//...do something here
for(k=0;k<25;k++)
{
output[k].data = tmp_data[k];
output[k].last = tmp_last[k];
}
}